Sediment drift from Glomma river outlet

from datetime import timedelta, datetime
from opendrift.models.sedimentdrift import SedimentDrift

o = SedimentDrift(loglevel=0)  # 0 for debug output
13:43:54 DEBUG   opendrift.models.basemodel:625: Adding 18 config items from basemodel
13:43:54 DEBUG   opendrift.models.basemodel:625: Adding 6 config items from basemodel
13:43:54 DEBUG   opendrift.models.basemodel:625: Adding 26 config items from basemodel
13:43:54 INFO    opendrift.models.basemodel:539: OpenDriftSimulation initialised (version 1.10.7 / v1.10.6-117-g893c021)
13:43:54 DEBUG   opendrift.models.basemodel:625: Adding 15 config items from oceandrift
13:43:54 DEBUG   opendrift.models.basemodel:637:   Overwriting config item seed:z
13:43:54 DEBUG   opendrift.models.basemodel:625: Adding 1 config items from sedimentdrift

Source of sediments at Glomma river outlet

lat=59.169194
lon=10.962920
o.seed_elements(lon=lon, lat=lat, number=10000,
                time=[datetime.utcnow(), datetime.utcnow()+timedelta(hours=48)],
                terminal_velocity=-.001)  # 1 mm/s settling speed

if False:  # Using constant south-westwards current and wind
    o.set_config('environment:fallback:x_sea_water_velocity', -.05)
    o.set_config('environment:fallback:y_sea_water_velocity', -.1)
    o.set_config('environment:fallback:y_wind', -6)
    o.set_config('environment:fallback:x_wind', -2)
    o.set_config('environment:fallback:sea_floor_depth_below_sea_level', 100)  # 100m depth
else:  # Using live data from Thredds
    o.add_readers_from_list([
        'https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be'])
13:43:54 DEBUG   opendrift.readers.reader_lazy:32: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:43:54 DEBUG   opendrift.models.basemodel:952: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be

Adding some diffusion

o.set_config('drift:current_uncertainty', .2)
o.set_config('drift:wind_uncertainty', 2)
o.set_config('vertical_mixing:diffusivitymodel', 'windspeed_Large1994')
#o.set_config('vertical_mixing:diffusivitymodel', 'environment')

o.run(time_step=600, time_step_output=1800, duration=timedelta(hours=36))
13:43:54 DEBUG   opendrift.models.basemodel:2545:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.10.7
  Platform: Linux, 5.15.0-1039-aws
  68.56807327270508 GB memory
  36 processors (x86_64)
  NumPy version 1.25.2
  SciPy version 1.11.2
  Matplotlib version 3.7.2
  NetCDF4 version 1.6.1
  Xarray version 2023.8.0
  Python version 3.11.4 | packaged by conda-forge | (main, Jun 10 2023, 18:08:17) [GCC 12.2.0]
------------------------------------------------------

13:43:54 DEBUG   opendrift.models.basemodel:2562: No output file is specified, neglecting export_buffer_length
13:43:54 INFO    opendrift.models.basemodel:2591: Fallback values will be used for the following variables which have no readers:
13:43:54 INFO    opendrift.models.basemodel:2594:       x_sea_water_velocity: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       y_sea_water_velocity: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       upward_sea_water_velocity: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       x_wind: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       y_wind: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_stokes_drift_x_velocity: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_stokes_drift_y_velocity: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       ocean_vertical_diffusivity: 0.020000
13:43:54 INFO    opendrift.models.basemodel:2594:       ocean_mixed_layer_thickness: 50.000000
13:43:54 INFO    opendrift.models.basemodel:2594:       sea_floor_depth_below_sea_level: 10000.000000
13:43:54 DEBUG   opendrift.models.basemodel:2718: Preparing readers for simulation coverage ([8.684760182679899, 58.0016257002547, 13.241080195127719, 60.33676083538983]) and time (2023-09-01 13:43:54.338376 to 2023-09-03 01:43:54.338376)
13:43:54 DEBUG   opendrift.models.basemodel:2722:       Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:43:54 INFO    opendrift.models.basemodel:2753: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1 m/s. Adding a customised landmask may be faster...
13:43:54 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:44:00 DEBUG   opendrift.models.basemodel:952: Added reader global_landmask
13:44:00 INFO    opendrift.models.basemodel:1701: Using existing reader for land_binary_mask
13:44:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:00 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 10000 elements
13:44:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:00 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:00 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:00 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 0 (max)
13:44:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:00 DEBUG   opendrift.models.basemodel:1527:               0 active elements
13:44:00 INFO    opendrift.models.basemodel:1713: All points are in ocean
13:44:00 DEBUG   opendrift.models.basemodel:1658: to be seeded: 10000, already seeded 0
13:44:00 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:00 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:00 INFO    opendrift.models.basemodel:2882: 2023-09-01 13:43:54.338376 - step 1 of 216 - 35 active elements (0 deactivated)
13:44:00 DEBUG   opendrift.models.basemodel:2888: 9965 elements scheduled.
13:44:00 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:00 DEBUG   opendrift.models.basemodel:1205: Variables not covered by any reader: ['x_sea_water_velocity', 'y_wind', 'upward_sea_water_velocity', 'x_wind', 'ocean_vertical_diffusivity', 'y_sea_water_velocity', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_surface_wave_stokes_drift_y_velocity', 'sea_floor_depth_below_sea_level', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'ocean_mixed_layer_thickness', 'sea_surface_wave_period_at_variance_spectral_density_maximum']
13:44:00 DEBUG   opendrift.readers.reader_lazy:51: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:00 INFO    opendrift.readers.reader_netCDF_CF_generic:92: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:02 DEBUG   opendrift.readers.reader_netCDF_CF_generic:109: Finding coordinate variables.
13:44:02 DEBUG   opendrift.readers.reader_netCDF_CF_generic:122: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
/opt/conda/envs/opendrift/lib/python3.11/site-packages/pyproj/crs/crs.py:1286: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
  proj = self._crs.to_proj4(version=version)
13:44:02 DEBUG   opendrift.readers.reader_netCDF_CF_generic:310: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
13:44:02 DEBUG   opendrift.readers.basereader.variables:593: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
13:44:02 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
13:44:02 DEBUG   opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
13:44:02 DEBUG   opendrift.readers.basereader.variables:548: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
13:44:02 DEBUG   opendrift.readers.basereader.structured:119: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
13:44:02 DEBUG   opendrift.readers.basereader:188: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:02 DEBUG   opendrift.readers.reader_lazy:58: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:02 DEBUG   opendrift.readers.basereader.variables:593: Setting buffer size 7 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
13:44:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:02 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 35 elements
13:44:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:02 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:02 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 35 elements
13:44:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 13:00:00 (before)
                2023-09-01 14:00:00 (after)
13:44:03 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:03 DEBUG   opendrift.readers.basereader.structured:253: Fetched env-block (size 14x14x2) for time before (2023-09-01 13:00:00)
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:04 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 14x14x2) for time after (2023-09-01 14:00:00)
13:44:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 13:00:00) in space  (linearNDFast)
13:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
  data[mask] = np.finfo(np.float64).min
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 13:00:00, weight 0.27) and
                      after (2023-09-01 14:00:00, weight 0.73) in time
13:44:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
13:44:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
13:44:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:04 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:04 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:04 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: 0.211709 (min) 1.17626 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.818321 (min) -0.0829091 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 0.000155614 (min) 0.000155614 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     x_wind: -0.594241 (min) 6.27002 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.38409 (min) 1.70195 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59209 (min) 6.59209 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1527:               35 active elements
13:44:04 DEBUG   opendrift.models.basemodel:1536:               latitude =  59.169193
13:44:04 DEBUG   opendrift.models.basemodel:1541:               longitude = 10.96292
13:44:04 DEBUG   opendrift.models.basemodel:1546:               z = 0.0
13:44:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:04 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:04 DEBUG   opendrift.models.physics_methods:1049:    min: 0.492290, mean: 3.236021, max: 5.986859
13:44:04 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.492290, mean: 3.236021, max: 5.986859
13:44:04 DEBUG   opendrift.models.basemodel:811: No elements hit coastline.
13:44:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:04 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:04 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:04 DEBUG   opendrift.models.oceandrift:376: No vertical advection for elements at surface
13:44:04 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 35 elements above 0.100m with wind-sheared ocean current (0.011523 m/s - 0.140130 m/s)
13:44:04 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:04 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:04 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.04435476443870544
13:44:04 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:04 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:04 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:04 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:04 DEBUG   opendrift.models.basemodel:2945: 35 active elements (0 deactivated)
13:44:04 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9965, already seeded 35
13:44:04 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 70 elements
13:44:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 13:00:00 (before)
                2023-09-01 14:00:00 (after)
13:44:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 13:00:00) in space  (linearNDFast)
13:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:04 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.33678 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1527:               70 active elements
13:44:04 DEBUG   opendrift.models.basemodel:1538:               59.16438612197045 <- latitude  -> 59.169193267822266
13:44:04 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.97592845085495
13:44:04 DEBUG   opendrift.models.basemodel:1548:               -6.0475232765640285   <- z ->   0.0
13:44:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:04 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:04 INFO    opendrift.models.basemodel:2882: 2023-09-01 13:53:54.338376 - step 2 of 216 - 70 active elements (0 deactivated)
13:44:04 DEBUG   opendrift.models.basemodel:2888: 9930 elements scheduled.
13:44:04 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 70 elements
13:44:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 70 elements
13:44:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 13:00:00 (before)
                2023-09-01 14:00:00 (after)
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:04 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 14x15x4) for time after (2023-09-01 14:00:00)
13:44:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 13:00:00) in space  (linearNDFast)
13:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:04 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:04 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 13:00:00, weight 0.10) and
                      after (2023-09-01 14:00:00, weight 0.90) in time
13:44:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.02408210597142 degrees.
13:44:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.02408210597142 degrees.
13:44:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:04 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:04 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:04 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.282478 (min) 1.20376 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.983633 (min) 0.146727 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 8.20697e-05 (min) 0.000163346 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.44936 (min) 6.6957 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.83188 (min) 2.59872 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 0 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.33678 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1527:               70 active elements
13:44:04 DEBUG   opendrift.models.basemodel:1538:               59.16438612197045 <- latitude  -> 59.169193267822266
13:44:04 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.97592845085495
13:44:04 DEBUG   opendrift.models.basemodel:1548:               -6.0475232765640285   <- z ->   0.0
13:44:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:04 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:04 DEBUG   opendrift.models.physics_methods:1049:    min: 0.079862, mean: 3.281501, max: 7.313480
13:44:04 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.079862, mean: 3.281501, max: 7.313480
13:44:04 DEBUG   opendrift.models.basemodel:811: No elements hit coastline.
13:44:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:04 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:04 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:04 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 70 elements above 0.100m with wind-sheared ocean current (0.001869 m/s - 0.171182 m/s)
13:44:04 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:04 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:04 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06618770277531623
13:44:04 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:04 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:04 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:04 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:04 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:04 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:04 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:04 DEBUG   opendrift.models.oceandrift:582: 2 elements penetrated seafloor, lifting up
13:44:04 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:04 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:04 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:04 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:04 DEBUG   opendrift.models.basemodel:2945: 70 active elements (0 deactivated)
13:44:04 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9930, already seeded 70
13:44:04 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 105 elements
13:44:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:04 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.74766 (max)
13:44:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1527:               105 active elements
13:44:04 DEBUG   opendrift.models.basemodel:1538:               59.16085357910435 <- latitude  -> 59.169193267822266
13:44:04 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.98494159692103
13:44:04 DEBUG   opendrift.models.basemodel:1548:               -7.2253920936584475   <- z ->   0.0
13:44:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:04 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:04 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:03:54.338376 - step 3 of 216 - 105 active elements (0 deactivated)
13:44:04 DEBUG   opendrift.models.basemodel:2888: 9895 elements scheduled.
13:44:04 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 105 elements
13:44:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:04 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:04 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 105 elements
13:44:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:05 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:05 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:05 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 15x16x4) for time after (2023-09-01 15:00:00)
13:44:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:05 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:05 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.93) and
                      after (2023-09-01 15:00:00, weight 0.07) in time
13:44:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.015068956860624 degrees.
13:44:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.015068956860624 degrees.
13:44:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:05 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:05 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:05 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.548565 (min) 1.04195 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03071 (min) 0.36658 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 6.80765e-05 (min) 0.000168161 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.2738 (min) 8.14038 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.26487 (min) 2.94584 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.74766 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1527:               105 active elements
13:44:05 DEBUG   opendrift.models.basemodel:1538:               59.16085357910435 <- latitude  -> 59.169193267822266
13:44:05 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.98494159692103
13:44:05 DEBUG   opendrift.models.basemodel:1548:               -7.2253920936584475   <- z ->   0.0
13:44:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:05 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:05 DEBUG   opendrift.models.physics_methods:1049:    min: 0.129894, mean: 3.450898, max: 7.038925
13:44:05 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.129894, mean: 3.450898, max: 7.038925
13:44:05 DEBUG   opendrift.models.basemodel:813: 9 elements hit coastline, moving back to water
13:44:05 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:05 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:05 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:05 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 105 elements above 0.100m with wind-sheared ocean current (0.003040 m/s - 0.158061 m/s)
13:44:05 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:05 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:05 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06131178762205123
13:44:05 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:05 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:05 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:05 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:582: 2 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:05 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:05 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:05 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:05 DEBUG   opendrift.models.oceandrift:582: 1 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:05 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:05 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
13:44:05 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:05 DEBUG   opendrift.models.basemodel:2945: 105 active elements (0 deactivated)
13:44:05 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9895, already seeded 105
13:44:05 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 139 elements
13:44:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:05 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.98572 (max)
13:44:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1527:               139 active elements
13:44:05 DEBUG   opendrift.models.basemodel:1538:               59.158847412582595 <- latitude  -> 59.16928951155289
13:44:05 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.9860592639121
13:44:05 DEBUG   opendrift.models.basemodel:1548:               -7.648504962921143   <- z ->   0.0
13:44:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:05 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:05 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:13:54.338376 - step 4 of 216 - 139 active elements (0 deactivated)
13:44:05 DEBUG   opendrift.models.basemodel:2888: 9861 elements scheduled.
13:44:05 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 139 elements
13:44:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:05 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:05 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 139 elements
13:44:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:06 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:06 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x16x4) for time after (2023-09-01 15:00:00)
13:44:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:06 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
13:44:06 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.77) and
                      after (2023-09-01 15:00:00, weight 0.23) in time
13:44:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.013951289179666 degrees.
13:44:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.013951289179666 degrees.
13:44:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:06 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:06 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:06 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.42569 (min) 1.12162 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.957872 (min) 0.187091 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 6.42309e-05 (min) 0.000168443 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.93779 (min) 7.41259 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.66994 (min) 2.67186 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 7.98572 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1527:               139 active elements
13:44:06 DEBUG   opendrift.models.basemodel:1538:               59.158847412582595 <- latitude  -> 59.16928951155289
13:44:06 DEBUG   opendrift.models.basemodel:1543:               10.962920188903809 <- longitude -> 10.9860592639121
13:44:06 DEBUG   opendrift.models.basemodel:1548:               -7.648504962921143   <- z ->   0.0
13:44:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:06 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:06 DEBUG   opendrift.models.physics_methods:1049:    min: 0.731976, mean: 3.543050, max: 6.992058
13:44:06 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.731976, mean: 3.543050, max: 6.992058
13:44:06 DEBUG   opendrift.models.basemodel:813: 17 elements hit coastline, moving back to water
13:44:06 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:06 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:06 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:06 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 139 elements above 0.100m with wind-sheared ocean current (0.025514 m/s - 0.157186 m/s)
13:44:06 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:06 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:06 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.060498086808757776
13:44:06 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:06 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:06 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:06 DEBUG   opendrift.models.oceandrift:582: 3 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:582: 2 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:06 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:06 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:06 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:06 DEBUG   opendrift.models.oceandrift:582: 9 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:06 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:06 DEBUG   opendrift.models.oceandrift:582: 5 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:06 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:06 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
13:44:06 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:06 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:06 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:06 DEBUG   opendrift.models.basemodel:2945: 139 active elements (0 deactivated)
13:44:06 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9861, already seeded 139
13:44:06 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 174 elements
13:44:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:06 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 8.21693 (max)
13:44:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1527:               174 active elements
13:44:06 DEBUG   opendrift.models.basemodel:1538:               59.15636560368878 <- latitude  -> 59.169193267822266
13:44:06 DEBUG   opendrift.models.basemodel:1543:               10.960321616769898 <- longitude -> 10.990503526891285
13:44:06 DEBUG   opendrift.models.basemodel:1548:               -7.593895424302139   <- z ->   0.0
13:44:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:06 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:06 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:23:54.338376 - step 5 of 216 - 174 active elements (0 deactivated)
13:44:06 DEBUG   opendrift.models.basemodel:2888: 9826 elements scheduled.
13:44:06 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 174 elements
13:44:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:06 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:06 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 174 elements
13:44:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:07 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:07 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-09-01 15:00:00)
13:44:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:07 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
13:44:07 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.60) and
                      after (2023-09-01 15:00:00, weight 0.40) in time
13:44:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03968893704458 and -59.00950703568041 degrees.
13:44:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.03968893704458 and -59.00950703568041 degrees.
13:44:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:07 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:07 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:07 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.4635 (min) 1.13617 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13889 (min) 0.442413 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 5.70117e-05 (min) 0.000168726 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.61797 (min) 8.01514 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.24581 (min) 3.3229 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 8.21693 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1527:               174 active elements
13:44:07 DEBUG   opendrift.models.basemodel:1538:               59.15636560368878 <- latitude  -> 59.169193267822266
13:44:07 DEBUG   opendrift.models.basemodel:1543:               10.960321616769898 <- longitude -> 10.990503526891285
13:44:07 DEBUG   opendrift.models.basemodel:1548:               -7.593895424302139   <- z ->   0.0
13:44:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:07 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:07 DEBUG   opendrift.models.physics_methods:1049:    min: 0.514806, mean: 3.426624, max: 7.555789
13:44:07 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.514806, mean: 3.426624, max: 7.555789
13:44:07 DEBUG   opendrift.models.basemodel:813: 12 elements hit coastline, moving back to water
13:44:07 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:07 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:07 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:07 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 174 elements above 0.100m with wind-sheared ocean current (0.006645 m/s - 0.157110 m/s)
13:44:07 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:07 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:07 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0706459227093029
13:44:07 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:07 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:07 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:07 DEBUG   opendrift.models.oceandrift:582: 4 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:07 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:07 DEBUG   opendrift.models.oceandrift:582: 2 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:07 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:07 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:07 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:07 DEBUG   opendrift.models.oceandrift:582: 6 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:07 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:07 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:07 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:07 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
13:44:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:07 DEBUG   opendrift.models.basemodel:2945: 174 active elements (0 deactivated)
13:44:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9826, already seeded 174
13:44:07 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 209 elements
13:44:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:07 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.27124 (max)
13:44:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1527:               209 active elements
13:44:07 DEBUG   opendrift.models.basemodel:1538:               59.151583101845894 <- latitude  -> 59.16934682118618
13:44:07 DEBUG   opendrift.models.basemodel:1543:               10.959961648247246 <- longitude -> 10.992465850242615
13:44:07 DEBUG   opendrift.models.basemodel:1548:               -8.069206237792969   <- z ->   0.0
13:44:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:07 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:07 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:33:54.338376 - step 6 of 216 - 209 active elements (0 deactivated)
13:44:07 DEBUG   opendrift.models.basemodel:2888: 9791 elements scheduled.
13:44:07 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 209 elements
13:44:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:07 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:07 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 209 elements
13:44:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:08 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-09-01 15:00:00)
13:44:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:08 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:08 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.43) and
                      after (2023-09-01 15:00:00, weight 0.57) in time
13:44:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.040048905604834 and -59.0075447017261 degrees.
13:44:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.040048905604834 and -59.0075447017261 degrees.
13:44:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:08 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:08 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:08 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.594637 (min) 1.20786 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.981254 (min) 0.275429 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: 5.27123e-06 (min) 0.000223307 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.44029 (min) 8.56954 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.04226 (min) 2.43379 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.27124 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1527:               209 active elements
13:44:08 DEBUG   opendrift.models.basemodel:1538:               59.151583101845894 <- latitude  -> 59.16934682118618
13:44:08 DEBUG   opendrift.models.basemodel:1543:               10.959961648247246 <- longitude -> 10.992465850242615
13:44:08 DEBUG   opendrift.models.basemodel:1548:               -7.976595878601074   <- z ->   0.0
13:44:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:08 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:08 DEBUG   opendrift.models.physics_methods:1049:    min: 0.160306, mean: 3.353993, max: 8.550335
13:44:08 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.160306, mean: 3.353993, max: 8.550335
13:44:08 DEBUG   opendrift.models.basemodel:813: 18 elements hit coastline, moving back to water
13:44:08 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:08 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:08 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:08 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 209 elements above 0.100m with wind-sheared ocean current (0.009758 m/s - 0.200132 m/s)
13:44:08 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:08 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:08 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09046658995159149
13:44:08 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:08 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:08 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:08 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 7 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 10 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:08 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:08 DEBUG   opendrift.models.basemodel:2945: 209 active elements (0 deactivated)
13:44:08 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9791, already seeded 209
13:44:08 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 244 elements
13:44:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:08 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.87958 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1527:               244 active elements
13:44:08 DEBUG   opendrift.models.basemodel:1538:               59.148836167095396 <- latitude  -> 59.169193267822266
13:44:08 DEBUG   opendrift.models.basemodel:1543:               10.95921541653899 <- longitude -> 10.999618984570947
13:44:08 DEBUG   opendrift.models.basemodel:1548:               -8.055206527709961   <- z ->   0.0
13:44:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:08 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:08 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:43:54.338376 - step 7 of 216 - 244 active elements (0 deactivated)
13:44:08 DEBUG   opendrift.models.basemodel:2888: 9756 elements scheduled.
13:44:08 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 244 elements
13:44:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 244 elements
13:44:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:08 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 15:00:00)
13:44:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:08 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:08 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.27) and
                      after (2023-09-01 15:00:00, weight 0.73) in time
13:44:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04079514268243 and -59.00039156054214 degrees.
13:44:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04079514268243 and -59.00039156054214 degrees.
13:44:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:08 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:08 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:08 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.575096 (min) 1.10285 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03007 (min) 0.341173 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000101133 (min) 0.000200293 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.53965 (min) 8.10339 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.12058 (min) 3.39537 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.87958 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1527:               244 active elements
13:44:08 DEBUG   opendrift.models.basemodel:1538:               59.148836167095396 <- latitude  -> 59.169193267822266
13:44:08 DEBUG   opendrift.models.basemodel:1543:               10.95921541653899 <- longitude -> 10.999618984570947
13:44:08 DEBUG   opendrift.models.basemodel:1548:               -8.055206527709961   <- z ->   0.0
13:44:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:08 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:08 DEBUG   opendrift.models.physics_methods:1049:    min: 0.174683, mean: 3.204381, max: 8.226596
13:44:08 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.174683, mean: 3.204381, max: 8.226596
13:44:08 DEBUG   opendrift.models.basemodel:813: 24 elements hit coastline, moving back to water
13:44:08 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:08 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:08 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:08 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 244 elements above 0.100m with wind-sheared ocean current (0.008113 m/s - 0.192554 m/s)
13:44:08 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:08 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:08 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08374596643169403
13:44:08 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:08 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:08 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:08 DEBUG   opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 16 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:08 DEBUG   opendrift.models.oceandrift:582: 19 elements penetrated seafloor, lifting up
13:44:08 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:08 DEBUG   opendrift.models.basemodel:2945: 244 active elements (0 deactivated)
13:44:08 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9756, already seeded 244
13:44:08 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 278 elements
13:44:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:08 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.63667 (max)
13:44:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1527:               278 active elements
13:44:08 DEBUG   opendrift.models.basemodel:1538:               59.14992768681159 <- latitude  -> 59.1693343964496
13:44:08 DEBUG   opendrift.models.basemodel:1543:               10.957762485961632 <- longitude -> 10.997261429050385
13:44:08 DEBUG   opendrift.models.basemodel:1548:               -8.218647956848145   <- z ->   0.0
13:44:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:08 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:08 INFO    opendrift.models.basemodel:2882: 2023-09-01 14:53:54.338376 - step 8 of 216 - 278 active elements (0 deactivated)
13:44:08 DEBUG   opendrift.models.basemodel:2888: 9722 elements scheduled.
13:44:08 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 278 elements
13:44:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:08 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:08 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 278 elements
13:44:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 14:00:00 (before)
                2023-09-01 15:00:00 (after)
13:44:09 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:09 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:09 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x17x4) for time after (2023-09-01 15:00:00)
13:44:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 14:00:00) in space  (linearNDFast)
13:44:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:09 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
13:44:09 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 14:00:00, weight 0.10) and
                      after (2023-09-01 15:00:00, weight 0.90) in time
13:44:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04224806875918 and -59.00274912242221 degrees.
13:44:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04224806875918 and -59.00274912242221 degrees.
13:44:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:09 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:09 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:09 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.552567 (min) 1.13289 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.981194 (min) 0.458199 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000112823 (min) 0.000264398 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.92777 (min) 9.03212 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.74645 (min) 3.15802 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.63667 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1527:               278 active elements
13:44:09 DEBUG   opendrift.models.basemodel:1538:               59.14992768681159 <- latitude  -> 59.1693343964496
13:44:09 DEBUG   opendrift.models.basemodel:1543:               10.957762485961632 <- longitude -> 10.997261429050385
13:44:09 DEBUG   opendrift.models.basemodel:1548:               -8.197280883789062   <- z ->   0.0
13:44:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:09 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:09 DEBUG   opendrift.models.physics_methods:1049:    min: 0.290886, mean: 3.204708, max: 8.000228
13:44:09 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.290886, mean: 3.204708, max: 8.000228
13:44:09 DEBUG   opendrift.models.basemodel:813: 24 elements hit coastline, moving back to water
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:09 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:09 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:09 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 278 elements above 0.100m with wind-sheared ocean current (0.009277 m/s - 0.146667 m/s)
13:44:09 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:09 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:09 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07920078495986937
13:44:09 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:09 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:09 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:09 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 16 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 11 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 15 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 8 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:09 DEBUG   opendrift.models.oceandrift:582: 9 elements penetrated seafloor, lifting up
13:44:09 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:09 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:09 DEBUG   opendrift.models.basemodel:2945: 278 active elements (0 deactivated)
13:44:09 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9722, already seeded 278
13:44:09 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 313 elements
13:44:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:09 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.58173 (min) 9.34591 (max)
13:44:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1527:               313 active elements
13:44:09 DEBUG   opendrift.models.basemodel:1538:               59.15110421336607 <- latitude  -> 59.17012495879911
13:44:09 DEBUG   opendrift.models.basemodel:1543:               10.956408926329045 <- longitude -> 11.001799267640198
13:44:09 DEBUG   opendrift.models.basemodel:1548:               -8.491126289367676   <- z ->   0.0
13:44:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:09 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:09 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:03:54.338376 - step 9 of 216 - 313 active elements (0 deactivated)
13:44:09 DEBUG   opendrift.models.basemodel:2888: 9687 elements scheduled.
13:44:09 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 313 elements
13:44:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:09 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:09 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 313 elements
13:44:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:10 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:10 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 16x18x4) for time after (2023-09-01 16:00:00)
13:44:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:10 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:10 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.93) and
                      after (2023-09-01 16:00:00, weight 0.07) in time
13:44:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043601630244375 and -58.99821129041984 degrees.
13:44:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043601630244375 and -58.99821129041984 degrees.
13:44:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:10 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:10 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:10 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.617917 (min) 1.1725 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.96408 (min) 0.481176 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -2.16991e-05 (min) 0.000325087 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.28661 (min) 8.06892 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.56009 (min) 3.76136 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.58173 (min) 9.34591 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1527:               313 active elements
13:44:10 DEBUG   opendrift.models.basemodel:1538:               59.15110421336607 <- latitude  -> 59.17012495879911
13:44:10 DEBUG   opendrift.models.basemodel:1543:               10.956408926329045 <- longitude -> 11.001799267640198
13:44:10 DEBUG   opendrift.models.basemodel:1548:               -8.491126289367676   <- z ->   0.0
13:44:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:10 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:10 DEBUG   opendrift.models.physics_methods:1049:    min: 0.014474, mean: 3.198310, max: 7.640726
13:44:10 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.014474, mean: 3.198310, max: 7.640726
13:44:10 DEBUG   opendrift.models.basemodel:813: 25 elements hit coastline, moving back to water
13:44:10 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:10 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:10 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:10 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 313 elements above 0.100m with wind-sheared ocean current (0.020299 m/s - 0.178841 m/s)
13:44:10 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:10 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:10 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07224306744106293
13:44:10 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:10 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:10 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:10 DEBUG   opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 12 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:10 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:10 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:10 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:10 DEBUG   opendrift.models.basemodel:2945: 313 active elements (0 deactivated)
13:44:10 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9687, already seeded 313
13:44:10 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 348 elements
13:44:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:10 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.60099 (max)
13:44:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1527:               348 active elements
13:44:10 DEBUG   opendrift.models.basemodel:1538:               59.15020525472798 <- latitude  -> 59.16973025807587
13:44:10 DEBUG   opendrift.models.basemodel:1543:               10.956408926329045 <- longitude -> 11.00142373676365
13:44:10 DEBUG   opendrift.models.basemodel:1548:               -8.546670913696289   <- z ->   0.0
13:44:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:10 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:10 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:13:54.338376 - step 10 of 216 - 348 active elements (0 deactivated)
13:44:10 DEBUG   opendrift.models.basemodel:2888: 9652 elements scheduled.
13:44:10 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 348 elements
13:44:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:10 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:10 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 348 elements
13:44:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:11 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:11 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:11 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
13:44:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:11 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
13:44:11 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.77) and
                      after (2023-09-01 16:00:00, weight 0.23) in time
13:44:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043601630244375 and -58.99858681941997 degrees.
13:44:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.043601630244375 and -58.99858681941997 degrees.
13:44:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:11 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:11 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:11 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.621889 (min) 1.08601 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.09277 (min) 0.334097 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.96138e-05 (min) 0.000322257 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.68381 (min) 9.74901 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.40224 (min) 4.33731 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.60099 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1527:               348 active elements
13:44:11 DEBUG   opendrift.models.basemodel:1538:               59.15020525472798 <- latitude  -> 59.16973025807587
13:44:11 DEBUG   opendrift.models.basemodel:1543:               10.956408926329045 <- longitude -> 11.00142373676365
13:44:11 DEBUG   opendrift.models.basemodel:1548:               -8.546670913696289   <- z ->   0.0
13:44:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:11 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:11 DEBUG   opendrift.models.physics_methods:1049:    min: 0.057860, mean: 3.430837, max: 8.346467
13:44:11 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.057860, mean: 3.430837, max: 8.346467
13:44:11 DEBUG   opendrift.models.basemodel:813: 30 elements hit coastline, moving back to water
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:11 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:11 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 348 elements above 0.100m with wind-sheared ocean current (0.000684 m/s - 0.187001 m/s)
13:44:11 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:11 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:11 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08620417692764282
13:44:11 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:11 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:11 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:11 DEBUG   opendrift.models.oceandrift:582: 29 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 13 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 22 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 14 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:11 DEBUG   opendrift.models.oceandrift:582: 18 elements penetrated seafloor, lifting up
13:44:11 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:11 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:11 DEBUG   opendrift.models.basemodel:2945: 348 active elements (0 deactivated)
13:44:11 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9652, already seeded 348
13:44:11 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 382 elements
13:44:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:11 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.80648 (max)
13:44:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1527:               382 active elements
13:44:11 DEBUG   opendrift.models.basemodel:1538:               59.14835861685002 <- latitude  -> 59.16989604266172
13:44:11 DEBUG   opendrift.models.basemodel:1543:               10.955402787892627 <- longitude -> 10.998223715351223
13:44:11 DEBUG   opendrift.models.basemodel:1548:               -9.233263244628906   <- z ->   0.0
13:44:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:11 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:11 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:23:54.338376 - step 11 of 216 - 382 active elements (0 deactivated)
13:44:11 DEBUG   opendrift.models.basemodel:2888: 9618 elements scheduled.
13:44:11 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 382 elements
13:44:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:11 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:11 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 382 elements
13:44:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:12 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
13:44:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:12 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
13:44:12 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.60) and
                      after (2023-09-01 16:00:00, weight 0.40) in time
13:44:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04460777215241 and -59.00178683668617 degrees.
13:44:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04460777215241 and -59.00178683668617 degrees.
13:44:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:12 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:12 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:12 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.635953 (min) 1.38573 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.878593 (min) 0.382432 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.25802e-05 (min) 0.000340145 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.36768 (min) 8.21815 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.05541 (min) 4.47389 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 9.80648 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1527:               382 active elements
13:44:12 DEBUG   opendrift.models.basemodel:1538:               59.14835861685002 <- latitude  -> 59.16989604266172
13:44:12 DEBUG   opendrift.models.basemodel:1543:               10.955402787892627 <- longitude -> 10.998223715351223
13:44:12 DEBUG   opendrift.models.basemodel:1548:               -9.233263244628906   <- z ->   0.0
13:44:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:12 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:12 DEBUG   opendrift.models.physics_methods:1049:    min: 0.078376, mean: 3.277607, max: 7.851004
13:44:12 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.078376, mean: 3.277607, max: 7.851004
13:44:12 DEBUG   opendrift.models.basemodel:813: 26 elements hit coastline, moving back to water
13:44:12 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:12 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:12 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:12 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 382 elements above 0.100m with wind-sheared ocean current (0.003292 m/s - 0.162818 m/s)
13:44:12 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:12 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:12 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07627392142541885
13:44:12 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:12 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:12 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:12 DEBUG   opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 25 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 25 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:12 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
13:44:12 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:12 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:12 DEBUG   opendrift.models.basemodel:2945: 382 active elements (0 deactivated)
13:44:12 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9618, already seeded 382
13:44:12 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 417 elements
13:44:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:12 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.49806 (min) 10.208 (max)
13:44:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1527:               417 active elements
13:44:12 DEBUG   opendrift.models.basemodel:1538:               59.14456310275736 <- latitude  -> 59.16948495149211
13:44:12 DEBUG   opendrift.models.basemodel:1543:               10.953624626504666 <- longitude -> 10.99991475099511
13:44:12 DEBUG   opendrift.models.basemodel:1548:               -8.710029602050781   <- z ->   0.0
13:44:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:12 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:12 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:33:54.338376 - step 12 of 216 - 417 active elements (0 deactivated)
13:44:12 DEBUG   opendrift.models.basemodel:2888: 9583 elements scheduled.
13:44:12 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 417 elements
13:44:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 417 elements
13:44:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:12 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
13:44:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:12 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
13:44:12 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.43) and
                      after (2023-09-01 16:00:00, weight 0.57) in time
13:44:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04638593144626 and -59.000095804096844 degrees.
13:44:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04638593144626 and -59.000095804096844 degrees.
13:44:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:13 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:13 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:13 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.584429 (min) 1.33447 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00148 (min) 0.369219 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -1.82283e-05 (min) 0.000381755 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.58394 (min) 10.4341 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.75862 (min) 4.59925 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.49806 (min) 10.208 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1527:               417 active elements
13:44:13 DEBUG   opendrift.models.basemodel:1538:               59.14456310275736 <- latitude  -> 59.16948495149211
13:44:13 DEBUG   opendrift.models.basemodel:1543:               10.953624626504666 <- longitude -> 10.99991475099511
13:44:13 DEBUG   opendrift.models.basemodel:1548:               -8.710029602050781   <- z ->   0.0
13:44:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:13 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:13 DEBUG   opendrift.models.physics_methods:1049:    min: 0.128855, mean: 3.480423, max: 8.965905
13:44:13 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.128855, mean: 3.480423, max: 8.965905
13:44:13 DEBUG   opendrift.models.basemodel:813: 37 elements hit coastline, moving back to water
13:44:13 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:13 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:13 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:13 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 417 elements above 0.100m with wind-sheared ocean current (0.003016 m/s - 0.139378 m/s)
13:44:13 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:13 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:13 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09947374312408447
13:44:13 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:13 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:13 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:13 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 35 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 20 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 17 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 21 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 26 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:13 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:13 DEBUG   opendrift.models.basemodel:2945: 417 active elements (0 deactivated)
13:44:13 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9583, already seeded 417
13:44:13 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 452 elements
13:44:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:13 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.42835 (min) 10.2689 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1527:               452 active elements
13:44:13 DEBUG   opendrift.models.basemodel:1538:               59.144372813007614 <- latitude  -> 59.170200405427835
13:44:13 DEBUG   opendrift.models.basemodel:1543:               10.949553948368639 <- longitude -> 11.000268244626279
13:44:13 DEBUG   opendrift.models.basemodel:1548:               -9.184288331442117   <- z ->   0.0
13:44:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:13 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:13 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:43:54.338376 - step 13 of 216 - 452 active elements (0 deactivated)
13:44:13 DEBUG   opendrift.models.basemodel:2888: 9548 elements scheduled.
13:44:13 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 452 elements
13:44:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:13 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 452 elements
13:44:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:13 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:13 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
13:44:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:13 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:13 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.27) and
                      after (2023-09-01 16:00:00, weight 0.73) in time
13:44:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050456606678274 and -58.999742309341606 degrees.
13:44:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050456606678274 and -58.999742309341606 degrees.
13:44:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:13 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:13 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:13 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.523465 (min) 1.11258 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.854242 (min) 0.467787 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.32112e-05 (min) 0.000313767 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.60035 (min) 9.85055 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.55216 (min) 5.16838 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.42835 (min) 10.2689 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1527:               452 active elements
13:44:13 DEBUG   opendrift.models.basemodel:1538:               59.144372813007614 <- latitude  -> 59.170200405427835
13:44:13 DEBUG   opendrift.models.basemodel:1543:               10.949553948368639 <- longitude -> 11.000268244626279
13:44:13 DEBUG   opendrift.models.basemodel:1548:               -9.184288331442117   <- z ->   0.0
13:44:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:13 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:13 DEBUG   opendrift.models.physics_methods:1049:    min: 0.335358, mean: 3.810397, max: 8.449254
13:44:13 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.335358, mean: 3.810397, max: 8.449254
13:44:13 DEBUG   opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
13:44:13 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:13 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:13 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:13 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 452 elements above 0.100m with wind-sheared ocean current (0.014611 m/s - 0.145519 m/s)
13:44:13 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:13 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:13 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08834035342700958
13:44:13 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:13 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:13 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:13 DEBUG   opendrift.models.oceandrift:582: 40 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 34 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 32 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 28 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:13 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
13:44:13 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:13 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:13 DEBUG   opendrift.models.basemodel:2945: 452 active elements (0 deactivated)
13:44:13 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9548, already seeded 452
13:44:13 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 487 elements
13:44:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:13 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 10.8844 (max)
13:44:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1527:               487 active elements
13:44:13 DEBUG   opendrift.models.basemodel:1538:               59.143297154008536 <- latitude  -> 59.169246845508674
13:44:13 DEBUG   opendrift.models.basemodel:1543:               10.954163838516287 <- longitude -> 10.999919718086865
13:44:13 DEBUG   opendrift.models.basemodel:1548:               -9.92958069268803   <- z ->   0.0
13:44:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:13 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:13 INFO    opendrift.models.basemodel:2882: 2023-09-01 15:53:54.338376 - step 14 of 216 - 487 active elements (0 deactivated)
13:44:13 DEBUG   opendrift.models.basemodel:2888: 9513 elements scheduled.
13:44:13 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 487 elements
13:44:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:13 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:13 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 487 elements
13:44:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 15:00:00 (before)
                2023-09-01 16:00:00 (after)
13:44:14 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:14 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:14 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:14 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:14 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:14 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-09-01 16:00:00)
13:44:14 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 15:00:00) in space  (linearNDFast)
13:44:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:14 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:14 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 15:00:00, weight 0.10) and
                      after (2023-09-01 16:00:00, weight 0.90) in time
13:44:14 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04584671708673 and -59.00009084416768 degrees.
13:44:14 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04584671708673 and -59.00009084416768 degrees.
13:44:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:14 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:14 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:14 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:14 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:14 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.469912 (min) 1.12139 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.944732 (min) 0.406048 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.35661e-05 (min) 0.000318687 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.31537 (min) 10.9228 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.42103 (min) 6.52002 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 10.8844 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1527:               487 active elements
13:44:14 DEBUG   opendrift.models.basemodel:1538:               59.143297154008536 <- latitude  -> 59.169246845508674
13:44:14 DEBUG   opendrift.models.basemodel:1543:               10.954163838516287 <- longitude -> 10.999919718086865
13:44:14 DEBUG   opendrift.models.basemodel:1548:               -9.92958069268803   <- z ->   0.0
13:44:14 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:14 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:14 DEBUG   opendrift.models.physics_methods:1049:    min: 0.246511, mean: 4.083862, max: 9.417747
13:44:14 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.246511, mean: 4.083862, max: 9.417747
13:44:14 DEBUG   opendrift.models.basemodel:813: 42 elements hit coastline, moving back to water
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:14 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:14 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:14 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 487 elements above 0.100m with wind-sheared ocean current (0.001035 m/s - 0.199170 m/s)
13:44:14 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:14 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:14 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10975201250370024
13:44:14 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:14 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:14 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:14 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:582: 33 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 26 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:14 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
13:44:14 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:14 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:14 DEBUG   opendrift.models.basemodel:2945: 487 active elements (0 deactivated)
13:44:14 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9513, already seeded 487
13:44:14 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 521 elements
13:44:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:14 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:14 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:14 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:14 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:14 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:14 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 11.1942 (max)
13:44:14 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1527:               521 active elements
13:44:14 DEBUG   opendrift.models.basemodel:1538:               59.14122609033179 <- latitude  -> 59.16971611530066
13:44:14 DEBUG   opendrift.models.basemodel:1543:               10.954137592926964 <- longitude -> 11.002194591076695
13:44:14 DEBUG   opendrift.models.basemodel:1548:               -10.605759124718853   <- z ->   0.0
13:44:14 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:14 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:14 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:03:54.338376 - step 15 of 216 - 521 active elements (0 deactivated)
13:44:14 DEBUG   opendrift.models.basemodel:2888: 9479 elements scheduled.
13:44:14 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 521 elements
13:44:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:14 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:14 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 521 elements
13:44:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:14 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x19x5) for time after (2023-09-01 17:00:00)
13:44:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
13:44:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.93) and
                      after (2023-09-01 17:00:00, weight 0.07) in time
13:44:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.045872967375736 and -58.99781596126694 degrees.
13:44:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.045872967375736 and -58.99781596126694 degrees.
13:44:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.59847 (min) 1.14683 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.877419 (min) 0.503766 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000124872 (min) 0.00031811 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.81802 (min) 11.1362 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.66804 (min) 6.53668 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 11.1942 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1527:               521 active elements
13:44:15 DEBUG   opendrift.models.basemodel:1538:               59.14122609033179 <- latitude  -> 59.16971611530066
13:44:15 DEBUG   opendrift.models.basemodel:1543:               10.954137592926964 <- longitude -> 11.002194591076695
13:44:15 DEBUG   opendrift.models.basemodel:1548:               -10.605759124718853   <- z ->   0.0
13:44:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:15 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:15 DEBUG   opendrift.models.physics_methods:1049:    min: 0.276720, mean: 4.164096, max: 9.791642
13:44:15 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.276720, mean: 4.164096, max: 9.791642
13:44:15 DEBUG   opendrift.models.basemodel:813: 42 elements hit coastline, moving back to water
13:44:15 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:15 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 521 elements above 0.100m with wind-sheared ocean current (0.017758 m/s - 0.177922 m/s)
13:44:15 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1186392327299881
13:44:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:15 DEBUG   opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 30 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:15 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
13:44:15 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:15 DEBUG   opendrift.models.basemodel:2945: 521 active elements (0 deactivated)
13:44:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9479, already seeded 521
13:44:15 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 556 elements
13:44:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.39027 (min) 11.0877 (max)
13:44:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1527:               556 active elements
13:44:15 DEBUG   opendrift.models.basemodel:1538:               59.142213855336415 <- latitude  -> 59.16920246818502
13:44:15 DEBUG   opendrift.models.basemodel:1543:               10.954163838516283 <- longitude -> 11.005663751344088
13:44:15 DEBUG   opendrift.models.basemodel:1548:               -10.04649757385254   <- z ->   0.0
13:44:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:15 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:13:54.338376 - step 16 of 216 - 556 active elements (0 deactivated)
13:44:15 DEBUG   opendrift.models.basemodel:2888: 9444 elements scheduled.
13:44:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 556 elements
13:44:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 556 elements
13:44:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:16 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:16 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:16 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-09-01 17:00:00)
13:44:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:16 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 286 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 1
13:44:16 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.77) and
                      after (2023-09-01 17:00:00, weight 0.23) in time
13:44:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04584671708673 and -58.99434679689418 degrees.
13:44:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04584671708673 and -58.99434679689418 degrees.
13:44:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:16 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:16 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:16 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.530107 (min) 1.12339 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02417 (min) 0.472963 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.09042e-05 (min) 0.000364167 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.69254 (min) 9.18131 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.33967 (min) 8.28655 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.39027 (min) 11.0877 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1527:               556 active elements
13:44:16 DEBUG   opendrift.models.basemodel:1538:               59.142213855336415 <- latitude  -> 59.16920246818502
13:44:16 DEBUG   opendrift.models.basemodel:1543:               10.954163838516283 <- longitude -> 11.005663751344088
13:44:16 DEBUG   opendrift.models.basemodel:1548:               -10.04649757385254   <- z ->   0.0
13:44:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:16 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:16 DEBUG   opendrift.models.physics_methods:1049:    min: 0.132518, mean: 4.039827, max: 8.249814
13:44:16 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.132518, mean: 4.039827, max: 8.249814
13:44:16 DEBUG   opendrift.models.basemodel:813: 43 elements hit coastline, moving back to water
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:16 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:16 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:16 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 556 elements above 0.100m with wind-sheared ocean current (0.009818 m/s - 0.174253 m/s)
13:44:16 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:16 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:16 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08421931579931259
13:44:16 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:16 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:16 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:16 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 39 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:16 DEBUG   opendrift.models.oceandrift:582: 34 elements penetrated seafloor, lifting up
13:44:16 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:16 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:16 DEBUG   opendrift.models.basemodel:2945: 556 active elements (0 deactivated)
13:44:16 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9444, already seeded 556
13:44:16 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 591 elements
13:44:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:16 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 11.1531 (max)
13:44:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1527:               591 active elements
13:44:16 DEBUG   opendrift.models.basemodel:1538:               59.141562219048666 <- latitude  -> 59.16971022333269
13:44:16 DEBUG   opendrift.models.basemodel:1543:               10.951145427499986 <- longitude -> 11.006292558461624
13:44:16 DEBUG   opendrift.models.basemodel:1548:               -10.020488395998397   <- z ->   0.0
13:44:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:16 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:16 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:23:54.338376 - step 17 of 216 - 591 active elements (0 deactivated)
13:44:16 DEBUG   opendrift.models.basemodel:2888: 9409 elements scheduled.
13:44:16 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 591 elements
13:44:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:16 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:16 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 591 elements
13:44:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:17 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:17 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:17 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x19x5) for time after (2023-09-01 17:00:00)
13:44:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:17 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 1
13:44:17 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.60) and
                      after (2023-09-01 17:00:00, weight 0.40) in time
13:44:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04886511817506 and -58.99371798548534 degrees.
13:44:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04886511817506 and -58.99371798548534 degrees.
13:44:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:17 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:17 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:17 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.577684 (min) 1.18995 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.907476 (min) 0.592096 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.58281e-05 (min) 0.000321258 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.86552 (min) 9.96596 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.45907 (min) 6.52766 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.59204 (min) 11.1531 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1527:               591 active elements
13:44:17 DEBUG   opendrift.models.basemodel:1538:               59.141562219048666 <- latitude  -> 59.16971022333269
13:44:17 DEBUG   opendrift.models.basemodel:1543:               10.951145427499986 <- longitude -> 11.006292558461624
13:44:17 DEBUG   opendrift.models.basemodel:1548:               -10.020488395998397   <- z ->   0.0
13:44:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:17 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:17 DEBUG   opendrift.models.physics_methods:1049:    min: 0.502240, mean: 4.009845, max: 8.529012
13:44:17 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.502240, mean: 4.009845, max: 8.529012
13:44:17 DEBUG   opendrift.models.basemodel:813: 43 elements hit coastline, moving back to water
13:44:17 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:17 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:17 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:17 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 591 elements above 0.100m with wind-sheared ocean current (0.001145 m/s - 0.154981 m/s)
13:44:17 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:17 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:17 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09001594539316177
13:44:17 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:17 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:17 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:17 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 57 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 50 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:17 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
13:44:17 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:17 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:17 DEBUG   opendrift.models.basemodel:2945: 591 active elements (0 deactivated)
13:44:17 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9409, already seeded 591
13:44:17 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 625 elements
13:44:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:17 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.97529 (min) 11.4035 (max)
13:44:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1527:               625 active elements
13:44:17 DEBUG   opendrift.models.basemodel:1538:               59.139845778089054 <- latitude  -> 59.17033283270036
13:44:17 DEBUG   opendrift.models.basemodel:1543:               10.950126585807446 <- longitude -> 11.006925665791574
13:44:17 DEBUG   opendrift.models.basemodel:1548:               -9.263848304748535   <- z ->   0.0
13:44:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:17 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:17 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:33:54.338376 - step 18 of 216 - 625 active elements (0 deactivated)
13:44:17 DEBUG   opendrift.models.basemodel:2888: 9375 elements scheduled.
13:44:17 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 625 elements
13:44:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:17 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:17 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 625 elements
13:44:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x19x4) for time after (2023-09-01 17:00:00)
13:44:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
13:44:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.43) and
                      after (2023-09-01 17:00:00, weight 0.57) in time
13:44:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04988396773768 and -58.99308488959774 degrees.
13:44:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.04988396773768 and -58.99308488959774 degrees.
13:44:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.597188 (min) 1.26243 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13575 (min) 0.382875 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.40038e-05 (min) 0.000521696 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.05014 (min) 10.3698 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.78501 (min) 6.42409 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.97529 (min) 11.4035 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1527:               625 active elements
13:44:18 DEBUG   opendrift.models.basemodel:1538:               59.139845778089054 <- latitude  -> 59.17033283270036
13:44:18 DEBUG   opendrift.models.basemodel:1543:               10.950126585807446 <- longitude -> 11.006925665791574
13:44:18 DEBUG   opendrift.models.basemodel:1548:               -9.263848304748535   <- z ->   0.0
13:44:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.246519, mean: 4.065913, max: 8.981916
13:44:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.246519, mean: 4.065913, max: 8.981916
13:44:18 DEBUG   opendrift.models.basemodel:813: 51 elements hit coastline, moving back to water
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:18 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 625 elements above 0.100m with wind-sheared ocean current (0.024074 m/s - 0.173493 m/s)
13:44:18 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09982931350095749
13:44:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:18 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 41 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 45 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 36 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:18 DEBUG   opendrift.models.basemodel:2945: 625 active elements (0 deactivated)
13:44:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9375, already seeded 625
13:44:18 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 660 elements
13:44:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:18 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.98577 (min) 11.6901 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1527:               660 active elements
13:44:18 DEBUG   opendrift.models.basemodel:1538:               59.1391344703618 <- latitude  -> 59.17008581968945
13:44:18 DEBUG   opendrift.models.basemodel:1543:               10.947903444876601 <- longitude -> 11.006973658166464
13:44:18 DEBUG   opendrift.models.basemodel:1548:               -11.017904209608838   <- z ->   0.0
13:44:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:18 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:18 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:43:54.338376 - step 19 of 216 - 660 active elements (0 deactivated)
13:44:18 DEBUG   opendrift.models.basemodel:2888: 9340 elements scheduled.
13:44:18 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 660 elements
13:44:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 660 elements
13:44:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 17x19x5) for time after (2023-09-01 17:00:00)
13:44:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 1
13:44:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.27) and
                      after (2023-09-01 17:00:00, weight 0.73) in time
13:44:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05210710526902 and -58.99303688608583 degrees.
13:44:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05210710526902 and -58.99303688608583 degrees.
13:44:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.576149 (min) 1.19344 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.832293 (min) 0.489625 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.42589e-05 (min) 0.00042949 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.95236 (min) 9.64624 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.72119 (min) 7.10291 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.98577 (min) 11.6901 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1527:               660 active elements
13:44:18 DEBUG   opendrift.models.basemodel:1538:               59.1391344703618 <- latitude  -> 59.17008581968945
13:44:18 DEBUG   opendrift.models.basemodel:1543:               10.947903444876601 <- longitude -> 11.006973658166464
13:44:18 DEBUG   opendrift.models.basemodel:1548:               -11.017904209608838   <- z ->   0.0
13:44:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.194596, mean: 4.000564, max: 8.482452
13:44:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.194596, mean: 4.000564, max: 8.482452
13:44:18 DEBUG   opendrift.models.basemodel:813: 51 elements hit coastline, moving back to water
13:44:18 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:18 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 660 elements above 0.100m with wind-sheared ocean current (0.022248 m/s - 0.175997 m/s)
13:44:18 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08903588683135986
13:44:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:18 DEBUG   opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 37 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 38 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 43 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:18 DEBUG   opendrift.models.oceandrift:582: 44 elements penetrated seafloor, lifting up
13:44:18 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:18 DEBUG   opendrift.models.basemodel:2945: 660 active elements (0 deactivated)
13:44:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9340, already seeded 660
13:44:18 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 695 elements
13:44:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:18 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.35799 (min) 11.7338 (max)
13:44:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1527:               695 active elements
13:44:18 DEBUG   opendrift.models.basemodel:1538:               59.14011618812884 <- latitude  -> 59.170190796402046
13:44:18 DEBUG   opendrift.models.basemodel:1543:               10.947214333073441 <- longitude -> 11.010255718957104
13:44:18 DEBUG   opendrift.models.basemodel:1548:               -10.220041080129961   <- z ->   0.0
13:44:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:18 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:18 INFO    opendrift.models.basemodel:2882: 2023-09-01 16:53:54.338376 - step 20 of 216 - 695 active elements (0 deactivated)
13:44:18 DEBUG   opendrift.models.basemodel:2888: 9305 elements scheduled.
13:44:18 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 695 elements
13:44:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 695 elements
13:44:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 16:00:00 (before)
                2023-09-01 17:00:00 (after)
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:19 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:19 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x19x5) for time after (2023-09-01 17:00:00)
13:44:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 16:00:00) in space  (linearNDFast)
13:44:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:19 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 333 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
13:44:19 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 16:00:00, weight 0.10) and
                      after (2023-09-01 17:00:00, weight 0.90) in time
13:44:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05279622540398 and -58.989754830752666 degrees.
13:44:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05279622540398 and -58.989754830752666 degrees.
13:44:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:19 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:19 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:19 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.543829 (min) 1.18577 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.947835 (min) 0.556494 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.63294e-05 (min) 0.000288602 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.54925 (min) 8.96279 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.9841 (min) 7.30004 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.35799 (min) 11.7338 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1527:               695 active elements
13:44:19 DEBUG   opendrift.models.basemodel:1538:               59.14011618812884 <- latitude  -> 59.170190796402046
13:44:19 DEBUG   opendrift.models.basemodel:1543:               10.947214333073441 <- longitude -> 11.010255718957104
13:44:19 DEBUG   opendrift.models.basemodel:1548:               -10.220041080129961   <- z ->   0.0
13:44:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:19 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:19 DEBUG   opendrift.models.physics_methods:1049:    min: 0.455828, mean: 4.023608, max: 8.008944
13:44:19 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.455828, mean: 4.023608, max: 8.008944
13:44:19 DEBUG   opendrift.models.basemodel:813: 49 elements hit coastline, moving back to water
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:19 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:19 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:19 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 695 elements above 0.100m with wind-sheared ocean current (0.010669 m/s - 0.147431 m/s)
13:44:19 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:19 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:19 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07937344567640305
13:44:19 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:19 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:19 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:19 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:19 DEBUG   opendrift.models.oceandrift:582: 46 elements penetrated seafloor, lifting up
13:44:19 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:19 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:19 DEBUG   opendrift.models.basemodel:2945: 695 active elements (0 deactivated)
13:44:19 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9305, already seeded 695
13:44:19 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 730 elements
13:44:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:19 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.36033 (min) 11.5851 (max)
13:44:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1527:               730 active elements
13:44:19 DEBUG   opendrift.models.basemodel:1538:               59.14000323099211 <- latitude  -> 59.170318873601005
13:44:19 DEBUG   opendrift.models.basemodel:1543:               10.949605817575659 <- longitude -> 11.010790058188293
13:44:19 DEBUG   opendrift.models.basemodel:1548:               -11.0320190441654   <- z ->   0.0
13:44:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:44:19 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:19 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:03:54.338376 - step 21 of 216 - 730 active elements (0 deactivated)
13:44:19 DEBUG   opendrift.models.basemodel:2888: 9270 elements scheduled.
13:44:19 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 730 elements
13:44:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 730 elements
13:44:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:20 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:20 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:20 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x19x5) for time after (2023-09-01 18:00:00)
13:44:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:20 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
13:44:20 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.93) and
                      after (2023-09-01 18:00:00, weight 0.07) in time
13:44:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05040473890136 and -58.98922049280938 degrees.
13:44:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05040473890136 and -58.98922049280938 degrees.
13:44:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:20 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:20 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:20 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.577638 (min) 1.39669 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.911306 (min) 0.558286 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.22023e-05 (min) 0.000320799 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.35938 (min) 10.7174 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.29306 (min) 6.76538 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.36033 (min) 11.5851 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1527:               730 active elements
13:44:20 DEBUG   opendrift.models.basemodel:1538:               59.14000323099211 <- latitude  -> 59.170318873601005
13:44:20 DEBUG   opendrift.models.basemodel:1543:               10.949605817575659 <- longitude -> 11.010790058188293
13:44:20 DEBUG   opendrift.models.basemodel:1548:               -11.0320190441654   <- z ->   0.0
13:44:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:20 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:20 DEBUG   opendrift.models.physics_methods:1049:    min: 0.207765, mean: 4.114840, max: 9.540489
13:44:20 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.207765, mean: 4.114840, max: 9.540489
13:44:20 DEBUG   opendrift.models.basemodel:813: 52 elements hit coastline, moving back to water
13:44:20 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:20 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:20 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:20 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 730 elements above 0.100m with wind-sheared ocean current (0.013247 m/s - 0.144955 m/s)
13:44:20 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:20 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:20 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11263136543043135
13:44:20 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:20 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:20 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:20 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 1 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 42 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:20 DEBUG   opendrift.models.oceandrift:582: 53 elements penetrated seafloor, lifting up
13:44:20 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:20 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:20 DEBUG   opendrift.models.basemodel:2945: 730 active elements (0 deactivated)
13:44:20 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9270, already seeded 730
13:44:20 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 764 elements
13:44:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:20 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.24077 (min) 11.8868 (max)
13:44:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1527:               764 active elements
13:44:20 DEBUG   opendrift.models.basemodel:1538:               59.1384585157347 <- latitude  -> 59.170050072228065
13:44:20 DEBUG   opendrift.models.basemodel:1543:               10.94906874753291 <- longitude -> 11.01033160149429
13:44:20 DEBUG   opendrift.models.basemodel:1548:               -10.39399242401123   <- z ->   0.0
13:44:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:20 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:20 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:13:54.338376 - step 22 of 216 - 764 active elements (0 deactivated)
13:44:20 DEBUG   opendrift.models.basemodel:2888: 9236 elements scheduled.
13:44:20 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 764 elements
13:44:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:20 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:20 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 764 elements
13:44:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:21 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:21 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
13:44:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:21 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 368 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
13:44:21 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.77) and
                      after (2023-09-01 18:00:00, weight 0.23) in time
13:44:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050941810732 and -58.98967894919131 degrees.
13:44:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.050941810732 and -58.98967894919131 degrees.
13:44:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:21 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:21 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:21 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.568016 (min) 1.04934 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.04148 (min) 0.552722 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.04414e-05 (min) 0.000288574 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.41975 (min) 10.9281 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.69903 (min) 6.89853 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.24077 (min) 11.8868 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1527:               764 active elements
13:44:21 DEBUG   opendrift.models.basemodel:1538:               59.1384585157347 <- latitude  -> 59.170050072228065
13:44:21 DEBUG   opendrift.models.basemodel:1543:               10.94906874753291 <- longitude -> 11.01033160149429
13:44:21 DEBUG   opendrift.models.basemodel:1548:               -10.39399242401123   <- z ->   0.0
13:44:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:21 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:21 DEBUG   opendrift.models.physics_methods:1049:    min: 0.156362, mean: 4.032270, max: 9.341221
13:44:21 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.156362, mean: 4.032270, max: 9.341221
13:44:21 DEBUG   opendrift.models.basemodel:813: 57 elements hit coastline, moving back to water
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:21 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:21 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:21 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 764 elements above 0.100m with wind-sheared ocean current (0.021643 m/s - 0.167406 m/s)
13:44:21 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:21 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:21 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10797570546443938
13:44:21 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:21 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:21 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:21 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 48 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 63 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 56 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 58 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 47 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 55 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:21 DEBUG   opendrift.models.oceandrift:582: 51 elements penetrated seafloor, lifting up
13:44:21 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:21 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:21 DEBUG   opendrift.models.basemodel:2945: 764 active elements (0 deactivated)
13:44:21 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9236, already seeded 764
13:44:21 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 799 elements
13:44:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:21 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.09029 (min) 12.087 (max)
13:44:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1527:               799 active elements
13:44:21 DEBUG   opendrift.models.basemodel:1538:               59.13831896107426 <- latitude  -> 59.16969727796699
13:44:21 DEBUG   opendrift.models.basemodel:1543:               10.949722150385135 <- longitude -> 11.013208506346936
13:44:21 DEBUG   opendrift.models.basemodel:1548:               -10.548239896116797   <- z ->   0.0
13:44:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:21 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:21 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:23:54.338376 - step 23 of 216 - 799 active elements (0 deactivated)
13:44:21 DEBUG   opendrift.models.basemodel:2888: 9201 elements scheduled.
13:44:21 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 799 elements
13:44:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:21 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:21 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 799 elements
13:44:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:22 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:22 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
13:44:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:22 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 387 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 387 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 387 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 387 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 387 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
13:44:22 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.60) and
                      after (2023-09-01 18:00:00, weight 0.40) in time
13:44:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05028839553656 and -58.98680204618159 degrees.
13:44:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05028839553656 and -58.98680204618159 degrees.
13:44:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:22 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:22 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:22 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.670841 (min) 1.15107 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.957515 (min) 0.629759 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.45165e-05 (min) 0.000221516 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.03044 (min) 10.5987 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.65143 (min) 6.6325 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 6.09029 (min) 12.087 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1527:               799 active elements
13:44:22 DEBUG   opendrift.models.basemodel:1538:               59.13831896107426 <- latitude  -> 59.16969727796699
13:44:22 DEBUG   opendrift.models.basemodel:1543:               10.949722150385135 <- longitude -> 11.013208506346936
13:44:22 DEBUG   opendrift.models.basemodel:1548:               -10.444813425417692   <- z ->   0.0
13:44:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:22 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:22 DEBUG   opendrift.models.physics_methods:1049:    min: 0.127603, mean: 4.164994, max: 9.635758
13:44:22 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.127603, mean: 4.164994, max: 9.635758
13:44:22 DEBUG   opendrift.models.basemodel:813: 61 elements hit coastline, moving back to water
13:44:22 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:22 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:22 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:22 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 799 elements above 0.100m with wind-sheared ocean current (0.021922 m/s - 0.156638 m/s)
13:44:22 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:22 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:22 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11489193285758971
13:44:22 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:22 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:22 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:22 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 59 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 52 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:22 DEBUG   opendrift.models.oceandrift:582: 54 elements penetrated seafloor, lifting up
13:44:22 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:22 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:22 DEBUG   opendrift.models.basemodel:2945: 799 active elements (0 deactivated)
13:44:22 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9201, already seeded 799
13:44:22 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 834 elements
13:44:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:22 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.71344 (min) 12.2327 (max)
13:44:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1527:               834 active elements
13:44:22 DEBUG   opendrift.models.basemodel:1538:               59.13805741624121 <- latitude  -> 59.16937560786687
13:44:22 DEBUG   opendrift.models.basemodel:1543:               10.947796887726945 <- longitude -> 11.015604952562933
13:44:22 DEBUG   opendrift.models.basemodel:1548:               -11.411293029785156   <- z ->   0.0
13:44:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:44:22 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:22 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:33:54.338376 - step 24 of 216 - 834 active elements (0 deactivated)
13:44:22 DEBUG   opendrift.models.basemodel:2888: 9166 elements scheduled.
13:44:22 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 834 elements
13:44:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:22 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:22 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 834 elements
13:44:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:23 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:23 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:23 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
13:44:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:23 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 406 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 1
13:44:23 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.43) and
                      after (2023-09-01 18:00:00, weight 0.57) in time
13:44:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05221366298497 and -58.98440559236616 degrees.
13:44:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05221366298497 and -58.98440559236616 degrees.
13:44:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:23 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:23 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:23 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.662943 (min) 1.33846 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00075 (min) 0.600914 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.18693e-05 (min) 0.00030618 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.96852 (min) 11.329 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.69543 (min) 6.5379 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.71344 (min) 12.2327 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1527:               834 active elements
13:44:23 DEBUG   opendrift.models.basemodel:1538:               59.13805741624121 <- latitude  -> 59.16937560786687
13:44:23 DEBUG   opendrift.models.basemodel:1543:               10.947796887726945 <- longitude -> 11.015604952562933
13:44:23 DEBUG   opendrift.models.basemodel:1548:               -11.411293029785156   <- z ->   0.0
13:44:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:23 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:23 DEBUG   opendrift.models.physics_methods:1049:    min: 0.438592, mean: 4.257738, max: 9.926977
13:44:23 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.438592, mean: 4.257738, max: 9.926977
13:44:23 DEBUG   opendrift.models.basemodel:813: 64 elements hit coastline, moving back to water
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:23 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:23 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:23 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 834 elements above 0.100m with wind-sheared ocean current (0.016458 m/s - 0.181876 m/s)
13:44:23 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:23 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:23 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12194134355409621
13:44:23 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:23 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:23 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:23 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 65 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 49 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 60 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 61 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:23 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
13:44:23 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:23 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:23 DEBUG   opendrift.models.basemodel:2945: 834 active elements (0 deactivated)
13:44:23 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9166, already seeded 834
13:44:23 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 868 elements
13:44:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:23 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.62871 (min) 12.4943 (max)
13:44:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1527:               868 active elements
13:44:23 DEBUG   opendrift.models.basemodel:1538:               59.13759973648829 <- latitude  -> 59.16964158339009
13:44:23 DEBUG   opendrift.models.basemodel:1543:               10.949722150385131 <- longitude -> 11.016683613697047
13:44:23 DEBUG   opendrift.models.basemodel:1548:               -11.401293029785156   <- z ->   0.0
13:44:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:23 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:23 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:43:54.338376 - step 25 of 216 - 868 active elements (0 deactivated)
13:44:23 DEBUG   opendrift.models.basemodel:2888: 9132 elements scheduled.
13:44:23 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 868 elements
13:44:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:23 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:23 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 868 elements
13:44:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:24 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-09-01 18:00:00)
13:44:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:24 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 411 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 411 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 411 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 411 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 411 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 1
13:44:24 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.27) and
                      after (2023-09-01 18:00:00, weight 0.73) in time
13:44:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05028839553656 and -58.9833269427832 degrees.
13:44:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05028839553656 and -58.9833269427832 degrees.
13:44:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:24 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:24 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:24 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.750566 (min) 1.22061 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.960069 (min) 0.57807 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.15696e-05 (min) 0.000459235 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.71284 (min) 10.0667 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.42887 (min) 7.60114 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.62871 (min) 12.4943 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1527:               868 active elements
13:44:24 DEBUG   opendrift.models.basemodel:1538:               59.13759973648829 <- latitude  -> 59.16964158339009
13:44:24 DEBUG   opendrift.models.basemodel:1543:               10.949722150385131 <- longitude -> 11.016683613697047
13:44:24 DEBUG   opendrift.models.basemodel:1548:               -11.401293029785156   <- z ->   0.0
13:44:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:24 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:24 DEBUG   opendrift.models.physics_methods:1049:    min: 0.284192, mean: 4.270636, max: 9.089141
13:44:24 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.284192, mean: 4.270636, max: 9.089141
13:44:24 DEBUG   opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
13:44:24 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:24 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:24 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:24 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 868 elements above 0.100m with wind-sheared ocean current (0.006652 m/s - 0.144624 m/s)
13:44:24 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:24 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:24 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10222693958576201
13:44:24 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:24 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:24 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:24 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:24 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:24 DEBUG   opendrift.models.basemodel:2945: 868 active elements (0 deactivated)
13:44:24 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9132, already seeded 868
13:44:24 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 903 elements
13:44:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:24 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.74625 (min) 12.6115 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1527:               903 active elements
13:44:24 DEBUG   opendrift.models.basemodel:1538:               59.136555706337234 <- latitude  -> 59.169193267822266
13:44:24 DEBUG   opendrift.models.basemodel:1543:               10.946696012194808 <- longitude -> 11.015841744690915
13:44:24 DEBUG   opendrift.models.basemodel:1548:               -11.334303855895996   <- z ->   0.0
13:44:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:44:24 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:24 INFO    opendrift.models.basemodel:2882: 2023-09-01 17:53:54.338376 - step 26 of 216 - 903 active elements (0 deactivated)
13:44:24 DEBUG   opendrift.models.basemodel:2888: 9097 elements scheduled.
13:44:24 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 903 elements
13:44:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 903 elements
13:44:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 17:00:00 (before)
                2023-09-01 18:00:00 (after)
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:24 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x19x5) for time after (2023-09-01 18:00:00)
13:44:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 17:00:00) in space  (linearNDFast)
13:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:24 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 1
13:44:24 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 17:00:00, weight 0.10) and
                      after (2023-09-01 18:00:00, weight 0.90) in time
13:44:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05331454246243 and -58.98416880415646 degrees.
13:44:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05331454246243 and -58.98416880415646 degrees.
13:44:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:24 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:24 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:24 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.618493 (min) 1.06635 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13048 (min) 0.596276 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.09325e-05 (min) 0.000407209 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.50663 (min) 10.908 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     y_wind: -4.91273 (min) 8.03962 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.74625 (min) 12.6115 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1527:               903 active elements
13:44:24 DEBUG   opendrift.models.basemodel:1538:               59.136555706337234 <- latitude  -> 59.169193267822266
13:44:24 DEBUG   opendrift.models.basemodel:1543:               10.946696012194808 <- longitude -> 11.015841744690915
13:44:24 DEBUG   opendrift.models.basemodel:1548:               -11.334303855895996   <- z ->   0.0
13:44:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:24 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:24 DEBUG   opendrift.models.physics_methods:1049:    min: 0.069932, mean: 4.366176, max: 9.732101
13:44:24 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.069932, mean: 4.366176, max: 9.732101
13:44:24 DEBUG   opendrift.models.basemodel:813: 64 elements hit coastline, moving back to water
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:24 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:24 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:24 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 903 elements above 0.100m with wind-sheared ocean current (0.033277 m/s - 0.209361 m/s)
13:44:24 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:24 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:24 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1172008318672943
13:44:24 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:24 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:24 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:24 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:24 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
13:44:24 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:24 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:24 DEBUG   opendrift.models.basemodel:2945: 903 active elements (0 deactivated)
13:44:24 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9097, already seeded 903
13:44:24 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 938 elements
13:44:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:24 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.52932 (min) 12.6691 (max)
13:44:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1527:               938 active elements
13:44:24 DEBUG   opendrift.models.basemodel:1538:               59.13596288753291 <- latitude  -> 59.17023035805989
13:44:24 DEBUG   opendrift.models.basemodel:1543:               10.947005071077138 <- longitude -> 11.01603279014963
13:44:24 DEBUG   opendrift.models.basemodel:1548:               -11.335221335495469   <- z ->   0.0
13:44:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:44:24 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:24 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:03:54.338376 - step 27 of 216 - 938 active elements (0 deactivated)
13:44:24 DEBUG   opendrift.models.basemodel:2888: 9062 elements scheduled.
13:44:24 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 938 elements
13:44:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:24 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:24 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 938 elements
13:44:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:26 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:26 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:26 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 18x19x5) for time after (2023-09-01 19:00:00)
13:44:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:26 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 476 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
13:44:26 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.93) and
                      after (2023-09-01 19:00:00, weight 0.07) in time
13:44:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05300548282024 and -58.98397776486998 degrees.
13:44:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05300548282024 and -58.98397776486998 degrees.
13:44:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:26 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:26 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:26 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.666106 (min) 1.34347 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.903376 (min) 0.561174 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.79056e-05 (min) 0.000608372 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.56055 (min) 10.6149 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.8243 (min) 7.40982 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.52932 (min) 12.6691 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1527:               938 active elements
13:44:26 DEBUG   opendrift.models.basemodel:1538:               59.13596288753291 <- latitude  -> 59.17023035805989
13:44:26 DEBUG   opendrift.models.basemodel:1543:               10.947005071077138 <- longitude -> 11.01603279014963
13:44:26 DEBUG   opendrift.models.basemodel:1548:               -11.335221335495469   <- z ->   0.0
13:44:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:26 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:26 DEBUG   opendrift.models.physics_methods:1049:    min: 0.167487, mean: 4.403351, max: 9.163545
13:44:26 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.167487, mean: 4.403351, max: 9.163545
13:44:26 DEBUG   opendrift.models.basemodel:813: 57 elements hit coastline, moving back to water
13:44:26 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:26 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:26 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:26 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 938 elements above 0.100m with wind-sheared ocean current (0.023490 m/s - 0.194233 m/s)
13:44:26 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:26 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:26 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10390739560707092
13:44:26 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:26 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:26 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:26 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 64 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:26 DEBUG   opendrift.models.oceandrift:582: 72 elements penetrated seafloor, lifting up
13:44:26 DEBUG   opendrift.models.oceandrift:600: 2 elements reached seafloor, set to bottom
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
13:44:26 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:26 DEBUG   opendrift.models.basemodel:2945: 938 active elements (0 deactivated)
13:44:26 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9062, already seeded 938
13:44:26 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 973 elements
13:44:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:26 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.53165 (min) 12.7974 (max)
13:44:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1527:               973 active elements
13:44:26 DEBUG   opendrift.models.basemodel:1538:               59.13480191109619 <- latitude  -> 59.169577043599176
13:44:26 DEBUG   opendrift.models.basemodel:1543:               10.947228049056195 <- longitude -> 11.016451726303861
13:44:26 DEBUG   opendrift.models.basemodel:1548:               -11.909779559442335   <- z ->   0.0
13:44:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:44:26 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:26 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:13:54.338376 - step 28 of 216 - 973 active elements (0 deactivated)
13:44:26 DEBUG   opendrift.models.basemodel:2888: 9027 elements scheduled.
13:44:26 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 973 elements
13:44:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:26 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:26 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 973 elements
13:44:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:27 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:27 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:27 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 19x19x5) for time after (2023-09-01 19:00:00)
13:44:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:27 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 1
13:44:27 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.77) and
                      after (2023-09-01 19:00:00, weight 0.23) in time
13:44:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05278249811096 and -58.98355881871669 degrees.
13:44:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05278249811096 and -58.98355881871669 degrees.
13:44:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:27 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:27 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:27 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.741474 (min) 1.1554 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.08264 (min) 0.465467 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.56268e-05 (min) 0.000310707 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.95936 (min) 10.2936 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.68956 (min) 7.57687 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.53165 (min) 12.7974 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1527:               973 active elements
13:44:27 DEBUG   opendrift.models.basemodel:1538:               59.13480191109619 <- latitude  -> 59.169577043599176
13:44:27 DEBUG   opendrift.models.basemodel:1543:               10.947228049056195 <- longitude -> 11.016451726303861
13:44:27 DEBUG   opendrift.models.basemodel:1548:               -11.909779559442335   <- z ->   0.0
13:44:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:27 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:27 DEBUG   opendrift.models.physics_methods:1049:    min: 0.187466, mean: 4.315215, max: 8.838997
13:44:27 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.187466, mean: 4.315215, max: 8.838997
13:44:27 DEBUG   opendrift.models.basemodel:813: 62 elements hit coastline, moving back to water
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:27 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:27 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:27 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 973 elements above 0.100m with wind-sheared ocean current (0.001431 m/s - 0.195967 m/s)
13:44:27 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:27 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:27 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09667779417760848
13:44:27 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:27 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:27 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:27 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 3 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:27 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:27 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:27 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:27 DEBUG   opendrift.models.basemodel:2945: 973 active elements (0 deactivated)
13:44:27 DEBUG   opendrift.models.basemodel:1658: to be seeded: 9027, already seeded 973
13:44:27 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 1007 elements
13:44:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:27 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.66678 (min) 12.786 (max)
13:44:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1527:               1007 active elements
13:44:27 DEBUG   opendrift.models.basemodel:1538:               59.13511046929726 <- latitude  -> 59.17006412094623
13:44:27 DEBUG   opendrift.models.basemodel:1543:               10.946395397485322 <- longitude -> 11.013551691445226
13:44:27 DEBUG   opendrift.models.basemodel:1548:               -11.354734352252542   <- z ->   0.0
13:44:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:44:27 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:27 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:23:54.338376 - step 29 of 216 - 1007 active elements (0 deactivated)
13:44:27 DEBUG   opendrift.models.basemodel:2888: 8993 elements scheduled.
13:44:27 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 1007 elements
13:44:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:27 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:27 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 1007 elements
13:44:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:28 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:28 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 19x19x5) for time after (2023-09-01 19:00:00)
13:44:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:28 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
13:44:28 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.60) and
                      after (2023-09-01 19:00:00, weight 0.40) in time
13:44:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05361516857401 and -58.98645885825438 degrees.
13:44:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05361516857401 and -58.98645885825438 degrees.
13:44:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:28 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:28 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:28 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.652677 (min) 1.29787 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.14454 (min) 0.760051 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.08637e-05 (min) 0.000320828 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.56996 (min) 9.96107 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.51405 (min) 7.31142 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.66678 (min) 12.786 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1527:               1007 active elements
13:44:28 DEBUG   opendrift.models.basemodel:1538:               59.13511046929726 <- latitude  -> 59.17006412094623
13:44:28 DEBUG   opendrift.models.basemodel:1543:               10.946395397485322 <- longitude -> 11.013551691445226
13:44:28 DEBUG   opendrift.models.basemodel:1548:               -11.354734352252542   <- z ->   0.0
13:44:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:28 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:28 DEBUG   opendrift.models.physics_methods:1049:    min: 0.297669, mean: 4.173512, max: 8.786561
13:44:28 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.297669, mean: 4.173512, max: 8.786561
13:44:28 DEBUG   opendrift.models.basemodel:813: 58 elements hit coastline, moving back to water
13:44:28 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:28 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:28 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:28 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 1007 elements above 0.100m with wind-sheared ocean current (0.019223 m/s - 0.178354 m/s)
13:44:28 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:28 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:28 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09553418507154464
13:44:28 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:28 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:28 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:28 DEBUG   opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:28 DEBUG   opendrift.models.oceandrift:582: 69 elements penetrated seafloor, lifting up
13:44:28 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:28 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:28 DEBUG   opendrift.models.basemodel:2945: 1007 active elements (0 deactivated)
13:44:28 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8993, already seeded 1007
13:44:28 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 1042 elements
13:44:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:28 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01469 (min) 12.7903 (max)
13:44:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1527:               1042 active elements
13:44:28 DEBUG   opendrift.models.basemodel:1538:               59.13055561139482 <- latitude  -> 59.170239266204334
13:44:28 DEBUG   opendrift.models.basemodel:1543:               10.948576804972255 <- longitude -> 11.0171787121845
13:44:28 DEBUG   opendrift.models.basemodel:1548:               -11.768661727905274   <- z ->   0.0
13:44:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:44:28 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:28 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:33:54.338376 - step 30 of 216 - 1042 active elements (0 deactivated)
13:44:28 DEBUG   opendrift.models.basemodel:2888: 8958 elements scheduled.
13:44:28 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 1042 elements
13:44:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:28 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:28 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 1042 elements
13:44:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:29 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:29 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:29 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:29 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:29 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:29 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:29 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
13:44:29 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:29 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 200 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 526 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 526 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 526 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 526 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 526 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 1
13:44:29 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.43) and
                      after (2023-09-01 19:00:00, weight 0.57) in time
13:44:29 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.051433753332006 and -58.982831849421906 degrees.
13:44:29 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.051433753332006 and -58.982831849421906 degrees.
13:44:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:30 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:30 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:30 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.627602 (min) 1.23441 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.964882 (min) 0.535007 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.06539e-05 (min) 0.000300814 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.03913 (min) 10.614 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.35529 (min) 8.861 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01469 (min) 12.7903 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1527:               1042 active elements
13:44:30 DEBUG   opendrift.models.basemodel:1538:               59.13055561139482 <- latitude  -> 59.170239266204334
13:44:30 DEBUG   opendrift.models.basemodel:1543:               10.948576804972255 <- longitude -> 11.0171787121845
13:44:30 DEBUG   opendrift.models.basemodel:1548:               -11.768661727905274   <- z ->   0.0
13:44:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:30 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:30 DEBUG   opendrift.models.physics_methods:1049:    min: 0.391120, mean: 4.052968, max: 9.287139
13:44:30 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.391120, mean: 4.052968, max: 9.287139
13:44:30 DEBUG   opendrift.models.basemodel:813: 69 elements hit coastline, moving back to water
13:44:30 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:30 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:30 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:30 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 1042 elements above 0.100m with wind-sheared ocean current (0.012056 m/s - 0.170421 m/s)
13:44:30 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:30 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:30 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10672909491451263
13:44:30 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:30 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:30 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:30 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 66 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 67 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 62 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:30 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:30 DEBUG   opendrift.models.basemodel:2945: 1042 active elements (0 deactivated)
13:44:30 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8958, already seeded 1042
13:44:30 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 1077 elements
13:44:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:30 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.46965 (min) 13.0332 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1527:               1077 active elements
13:44:30 DEBUG   opendrift.models.basemodel:1538:               59.129341448343986 <- latitude  -> 59.1705269478322
13:44:30 DEBUG   opendrift.models.basemodel:1543:               10.94698188355249 <- longitude -> 11.015796004238508
13:44:30 DEBUG   opendrift.models.basemodel:1548:               -11.759943237304688   <- z ->   0.0
13:44:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:44:30 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:30 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:43:54.338376 - step 31 of 216 - 1077 active elements (0 deactivated)
13:44:30 DEBUG   opendrift.models.basemodel:2888: 8923 elements scheduled.
13:44:30 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 1077 elements
13:44:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 1077 elements
13:44:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:30 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:30 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-09-01 19:00:00)
13:44:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:30 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 544 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 1
13:44:30 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.27) and
                      after (2023-09-01 19:00:00, weight 0.73) in time
13:44:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05302867748519 and -58.9842145479535 degrees.
13:44:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05302867748519 and -58.9842145479535 degrees.
13:44:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:30 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:30 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:30 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.63332 (min) 1.1476 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.892432 (min) 0.505657 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.44958e-05 (min) 0.000298561 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.61292 (min) 10.2549 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.90531 (min) 6.81771 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.46965 (min) 13.0332 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1527:               1077 active elements
13:44:30 DEBUG   opendrift.models.basemodel:1538:               59.129341448343986 <- latitude  -> 59.1705269478322
13:44:30 DEBUG   opendrift.models.basemodel:1543:               10.94698188355249 <- longitude -> 11.015796004238508
13:44:30 DEBUG   opendrift.models.basemodel:1548:               -11.593321800231934   <- z ->   0.0
13:44:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:30 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:30 DEBUG   opendrift.models.physics_methods:1049:    min: 0.173831, mean: 4.032649, max: 8.989853
13:44:30 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.173831, mean: 4.032649, max: 8.989853
13:44:30 DEBUG   opendrift.models.basemodel:813: 74 elements hit coastline, moving back to water
13:44:30 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:30 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:30 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:30 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 1077 elements above 0.100m with wind-sheared ocean current (0.004613 m/s - 0.174104 m/s)
13:44:30 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:30 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:30 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10000582308872222
13:44:30 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:30 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:30 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:30 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:30 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:30 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:30 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:30 DEBUG   opendrift.models.basemodel:2945: 1077 active elements (0 deactivated)
13:44:30 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8923, already seeded 1077
13:44:30 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 1112 elements
13:44:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:30 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.69388 (min) 13.3909 (max)
13:44:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1527:               1112 active elements
13:44:30 DEBUG   opendrift.models.basemodel:1538:               59.125748491166576 <- latitude  -> 59.17046122753382
13:44:30 DEBUG   opendrift.models.basemodel:1543:               10.947131342454476 <- longitude -> 11.017164396808445
13:44:30 DEBUG   opendrift.models.basemodel:1548:               -13.033214569091797   <- z ->   0.0
13:44:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:44:30 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:30 INFO    opendrift.models.basemodel:2882: 2023-09-01 18:53:54.338376 - step 32 of 216 - 1112 active elements (0 deactivated)
13:44:30 DEBUG   opendrift.models.basemodel:2888: 8888 elements scheduled.
13:44:30 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 1112 elements
13:44:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 1112 elements
13:44:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 18:00:00 (before)
                2023-09-01 19:00:00 (after)
13:44:31 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:31 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 19:00:00)
13:44:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 18:00:00) in space  (linearNDFast)
13:44:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:31 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 577 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 577 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 577 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 577 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 577 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
13:44:31 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 18:00:00, weight 0.10) and
                      after (2023-09-01 19:00:00, weight 0.90) in time
13:44:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0528792150963 and -58.98284614535742 degrees.
13:44:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0528792150963 and -58.98284614535742 degrees.
13:44:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:31 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:31 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:31 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.593153 (min) 1.39333 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01125 (min) 0.554548 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.64379e-05 (min) 0.000277705 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.98492 (min) 10.2778 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.0413 (min) 7.34856 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.69388 (min) 13.3909 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1527:               1112 active elements
13:44:31 DEBUG   opendrift.models.basemodel:1538:               59.125748491166576 <- latitude  -> 59.17046122753382
13:44:31 DEBUG   opendrift.models.basemodel:1543:               10.947131342454476 <- longitude -> 11.017164396808445
13:44:31 DEBUG   opendrift.models.basemodel:1548:               -12.934243202209473   <- z ->   0.0
13:44:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:31 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:31 DEBUG   opendrift.models.physics_methods:1049:    min: 0.213410, mean: 3.994578, max: 9.059266
13:44:31 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.213410, mean: 3.994578, max: 9.059266
13:44:31 DEBUG   opendrift.models.basemodel:813: 62 elements hit coastline, moving back to water
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:31 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:31 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:31 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 1112 elements above 0.100m with wind-sheared ocean current (0.005933 m/s - 0.152468 m/s)
13:44:31 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:31 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:31 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10155605308158874
13:44:31 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:31 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:31 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:31 DEBUG   opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 72 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:31 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
13:44:31 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:31 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:31 DEBUG   opendrift.models.basemodel:2945: 1112 active elements (0 deactivated)
13:44:31 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8888, already seeded 1112
13:44:31 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 1146 elements
13:44:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:31 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.27913 (min) 13.6468 (max)
13:44:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1527:               1146 active elements
13:44:31 DEBUG   opendrift.models.basemodel:1538:               59.124075958038226 <- latitude  -> 59.17235910137809
13:44:31 DEBUG   opendrift.models.basemodel:1543:               10.945124917237425 <- longitude -> 11.017550598231876
13:44:31 DEBUG   opendrift.models.basemodel:1548:               -12.934243202209473   <- z ->   0.0
13:44:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:44:31 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:31 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:03:54.338376 - step 33 of 216 - 1146 active elements (0 deactivated)
13:44:31 DEBUG   opendrift.models.basemodel:2888: 8854 elements scheduled.
13:44:31 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 1146 elements
13:44:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:31 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:31 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 1146 elements
13:44:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:32 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:32 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:32 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
13:44:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:32 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 1
13:44:32 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.93) and
                      after (2023-09-01 20:00:00, weight 0.07) in time
13:44:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05488564242362 and -58.98245994242566 degrees.
13:44:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05488564242362 and -58.98245994242566 degrees.
13:44:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:32 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:32 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:32 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.67419 (min) 1.15548 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0172 (min) 0.60812 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.99189e-05 (min) 0.000382782 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.19024 (min) 10.3574 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.35131 (min) 8.36066 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.27913 (min) 13.6468 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1527:               1146 active elements
13:44:32 DEBUG   opendrift.models.basemodel:1538:               59.124075958038226 <- latitude  -> 59.17235910137809
13:44:32 DEBUG   opendrift.models.basemodel:1543:               10.945124917237425 <- longitude -> 11.017550598231876
13:44:32 DEBUG   opendrift.models.basemodel:1548:               -12.934243202209473   <- z ->   0.0
13:44:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:32 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:32 DEBUG   opendrift.models.physics_methods:1049:    min: 0.130754, mean: 3.871144, max: 9.558099
13:44:32 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.130754, mean: 3.871144, max: 9.558099
13:44:32 DEBUG   opendrift.models.basemodel:813: 69 elements hit coastline, moving back to water
13:44:32 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:32 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:32 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:32 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 1146 elements above 0.100m with wind-sheared ocean current (0.014650 m/s - 0.173860 m/s)
13:44:32 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:32 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:32 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11304752021844863
13:44:32 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:32 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:32 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:32 DEBUG   opendrift.models.oceandrift:582: 123 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:32 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
13:44:32 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:32 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:32 DEBUG   opendrift.models.basemodel:2945: 1146 active elements (0 deactivated)
13:44:32 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8854, already seeded 1146
13:44:32 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 1181 elements
13:44:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:32 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.36583 (min) 13.9799 (max)
13:44:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1527:               1181 active elements
13:44:32 DEBUG   opendrift.models.basemodel:1538:               59.12078780074505 <- latitude  -> 59.172944204553374
13:44:32 DEBUG   opendrift.models.basemodel:1543:               10.944493138198753 <- longitude -> 11.018385090510863
13:44:32 DEBUG   opendrift.models.basemodel:1548:               -12.934243202209473   <- z ->   0.0
13:44:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:44:32 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:32 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:13:54.338376 - step 34 of 216 - 1181 active elements (0 deactivated)
13:44:32 DEBUG   opendrift.models.basemodel:2888: 8819 elements scheduled.
13:44:32 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 1181 elements
13:44:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:32 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:32 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 1181 elements
13:44:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:33 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:33 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:33 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
13:44:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:33 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 640 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 640 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 640 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 640 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 640 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 239 elements, expanding data 1
13:44:33 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.77) and
                      after (2023-09-01 20:00:00, weight 0.23) in time
13:44:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05551740770445 and -58.98162546810639 degrees.
13:44:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05551740770445 and -58.98162546810639 degrees.
13:44:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:33 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:33 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:33 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.638151 (min) 1.22351 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.915216 (min) 0.588297 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.57788e-05 (min) 0.000497988 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.63807 (min) 9.6769 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.63417 (min) 6.83321 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.36583 (min) 13.9799 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1527:               1181 active elements
13:44:33 DEBUG   opendrift.models.basemodel:1538:               59.12078780074505 <- latitude  -> 59.172944204553374
13:44:33 DEBUG   opendrift.models.basemodel:1543:               10.944493138198753 <- longitude -> 11.018385090510863
13:44:33 DEBUG   opendrift.models.basemodel:1548:               -12.934243202209473   <- z ->   0.0
13:44:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:33 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:33 DEBUG   opendrift.models.physics_methods:1049:    min: 0.148367, mean: 3.817370, max: 8.824452
13:44:33 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.148367, mean: 3.817370, max: 8.824452
13:44:33 DEBUG   opendrift.models.basemodel:813: 79 elements hit coastline, moving back to water
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:33 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:33 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:33 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 1181 elements above 0.100m with wind-sheared ocean current (0.026319 m/s - 0.189815 m/s)
13:44:33 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:33 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:33 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09635985622747421
13:44:33 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:33 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:33 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:33 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:33 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:33 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:33 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:33 DEBUG   opendrift.models.basemodel:2945: 1181 active elements (0 deactivated)
13:44:33 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8819, already seeded 1181
13:44:33 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 1216 elements
13:44:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:33 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:33 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.20563 (min) 13.9836 (max)
13:44:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1527:               1216 active elements
13:44:33 DEBUG   opendrift.models.basemodel:1538:               59.12085899125334 <- latitude  -> 59.173919605102846
13:44:33 DEBUG   opendrift.models.basemodel:1543:               10.946269160518211 <- longitude -> 11.01801192893455
13:44:33 DEBUG   opendrift.models.basemodel:1548:               -12.934242248535156   <- z ->   0.0
13:44:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:44:33 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:33 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:23:54.338376 - step 35 of 216 - 1216 active elements (0 deactivated)
13:44:33 DEBUG   opendrift.models.basemodel:2888: 8784 elements scheduled.
13:44:33 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 1216 elements
13:44:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:33 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:33 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 1216 elements
13:44:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:33 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:35 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:35 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
13:44:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:35 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 297 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 76 elements, expanding data 2
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 261 elements, expanding data 1
13:44:35 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.60) and
                      after (2023-09-01 20:00:00, weight 0.40) in time
13:44:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0537413990759 and -58.98199861506963 degrees.
13:44:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0537413990759 and -58.98199861506963 degrees.
13:44:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:35 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:35 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:35 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.780832 (min) 1.28522 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.892428 (min) 0.615706 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.99553e-05 (min) 0.000495624 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     x_wind: -1.74351 (min) 10.9769 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.3118 (min) 6.57756 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.20563 (min) 13.9836 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1527:               1216 active elements
13:44:35 DEBUG   opendrift.models.basemodel:1538:               59.12085899125334 <- latitude  -> 59.173919605102846
13:44:35 DEBUG   opendrift.models.basemodel:1543:               10.946269160518211 <- longitude -> 11.01801192893455
13:44:35 DEBUG   opendrift.models.basemodel:1548:               -12.934242248535156   <- z ->   0.0
13:44:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:35 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:35 DEBUG   opendrift.models.physics_methods:1049:    min: 0.113900, mean: 3.654693, max: 9.605674
13:44:35 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.113900, mean: 3.654693, max: 9.605674
13:44:35 DEBUG   opendrift.models.basemodel:813: 85 elements hit coastline, moving back to water
13:44:35 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:35 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:35 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1216 elements above 0.100m with wind-sheared ocean current (0.024069 m/s - 0.159212 m/s)
13:44:35 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:35 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:35 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11417566321809768
13:44:35 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:35 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:35 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:35 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:35 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:35 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:35 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:35 DEBUG   opendrift.models.basemodel:2945: 1216 active elements (0 deactivated)
13:44:35 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8784, already seeded 1216
13:44:35 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 1250 elements
13:44:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:35 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.28429 (min) 14.3215 (max)
13:44:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1527:               1250 active elements
13:44:35 DEBUG   opendrift.models.basemodel:1538:               59.11759830026085 <- latitude  -> 59.172802265404286
13:44:35 DEBUG   opendrift.models.basemodel:1543:               10.943401387060915 <- longitude -> 11.018304045145648
13:44:35 DEBUG   opendrift.models.basemodel:1548:               -13.107546484353367   <- z ->   0.0
13:44:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:44:35 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:35 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:33:54.338376 - step 36 of 216 - 1250 active elements (0 deactivated)
13:44:35 DEBUG   opendrift.models.basemodel:2888: 8750 elements scheduled.
13:44:35 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 1250 elements
13:44:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:35 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:35 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 1250 elements
13:44:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:36 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:36 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:36 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 20:00:00)
13:44:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:36 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 320 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 320 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 320 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 320 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 320 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 695 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 695 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 695 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 695 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 695 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 1
13:44:36 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.43) and
                      after (2023-09-01 20:00:00, weight 0.57) in time
13:44:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05660916046192 and -58.98170651083912 degrees.
13:44:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05660916046192 and -58.98170651083912 degrees.
13:44:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:36 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:36 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:36 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.656874 (min) 1.26557 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.04707 (min) 0.679955 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.79112e-05 (min) 0.000310359 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.04422 (min) 9.9739 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.32228 (min) 7.33123 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.28429 (min) 14.3215 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1527:               1250 active elements
13:44:36 DEBUG   opendrift.models.basemodel:1538:               59.11759830026085 <- latitude  -> 59.172802265404286
13:44:36 DEBUG   opendrift.models.basemodel:1543:               10.943401387060915 <- longitude -> 11.018304045145648
13:44:36 DEBUG   opendrift.models.basemodel:1548:               -13.107546484353367   <- z ->   0.0
13:44:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:36 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:36 DEBUG   opendrift.models.physics_methods:1049:    min: 0.084629, mean: 3.600719, max: 8.927114
13:44:36 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.084629, mean: 3.600719, max: 8.927114
13:44:36 DEBUG   opendrift.models.basemodel:813: 77 elements hit coastline, moving back to water
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:36 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:36 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:36 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1250 elements above 0.100m with wind-sheared ocean current (0.001731 m/s - 0.136160 m/s)
13:44:36 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:36 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:36 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0986148886953163
13:44:36 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:36 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:36 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:36 DEBUG   opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:36 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
13:44:36 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:36 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:36 DEBUG   opendrift.models.basemodel:2945: 1250 active elements (0 deactivated)
13:44:36 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8750, already seeded 1250
13:44:36 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 1285 elements
13:44:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:36 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.0435 (max)
13:44:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1527:               1285 active elements
13:44:36 DEBUG   opendrift.models.basemodel:1538:               59.1203794423923 <- latitude  -> 59.174436470365706
13:44:36 DEBUG   opendrift.models.basemodel:1543:               10.942860624706297 <- longitude -> 11.017251638461637
13:44:36 DEBUG   opendrift.models.basemodel:1548:               -12.848348331013376   <- z ->   0.0
13:44:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:44:36 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:36 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:43:54.338376 - step 37 of 216 - 1285 active elements (0 deactivated)
13:44:36 DEBUG   opendrift.models.basemodel:2888: 8715 elements scheduled.
13:44:36 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 1285 elements
13:44:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:36 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:36 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 1285 elements
13:44:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:37 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:37 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:37 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 20:00:00)
13:44:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:37 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 341 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 733 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 733 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 733 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 733 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 733 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 1
13:44:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:37 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.27) and
                      after (2023-09-01 20:00:00, weight 0.73) in time
13:44:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05714993536554 and -58.982758919902615 degrees.
13:44:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05714993536554 and -58.982758919902615 degrees.
13:44:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:37 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:37 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:37 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.682435 (min) 1.16347 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.990611 (min) 0.741294 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.57579e-05 (min) 0.00036727 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.94704 (min) 10.0581 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.11166 (min) 7.40663 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.0435 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1527:               1285 active elements
13:44:37 DEBUG   opendrift.models.basemodel:1538:               59.1203794423923 <- latitude  -> 59.174436470365706
13:44:37 DEBUG   opendrift.models.basemodel:1543:               10.942860624706297 <- longitude -> 11.017251638461637
13:44:37 DEBUG   opendrift.models.basemodel:1548:               -12.848348331013376   <- z ->   0.0
13:44:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:37 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:37 DEBUG   opendrift.models.physics_methods:1049:    min: 0.135422, mean: 3.595159, max: 8.671420
13:44:37 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.135422, mean: 3.595159, max: 8.671420
13:44:37 DEBUG   opendrift.models.basemodel:813: 87 elements hit coastline, moving back to water
13:44:37 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:37 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:37 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:37 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1285 elements above 0.100m with wind-sheared ocean current (0.010780 m/s - 0.164165 m/s)
13:44:37 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:37 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:37 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.093046887349205
13:44:37 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:37 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:37 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:37 DEBUG   opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 5 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:37 DEBUG   opendrift.models.oceandrift:582: 68 elements penetrated seafloor, lifting up
13:44:37 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:37 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:37 DEBUG   opendrift.models.basemodel:2945: 1285 active elements (0 deactivated)
13:44:37 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8715, already seeded 1285
13:44:37 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 1320 elements
13:44:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:37 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.24244 (min) 13.9905 (max)
13:44:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1527:               1320 active elements
13:44:37 DEBUG   opendrift.models.basemodel:1538:               59.12049521027091 <- latitude  -> 59.17499831020442
13:44:37 DEBUG   opendrift.models.basemodel:1543:               10.944540550683277 <- longitude -> 11.019657951748231
13:44:37 DEBUG   opendrift.models.basemodel:1548:               -13.045611135669692   <- z ->   0.0
13:44:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:44:37 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:37 INFO    opendrift.models.basemodel:2882: 2023-09-01 19:53:54.338376 - step 38 of 216 - 1320 active elements (0 deactivated)
13:44:37 DEBUG   opendrift.models.basemodel:2888: 8680 elements scheduled.
13:44:37 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 1320 elements
13:44:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:37 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:37 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 1320 elements
13:44:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 19:00:00 (before)
                2023-09-01 20:00:00 (after)
13:44:38 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:38 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:38 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 20:00:00)
13:44:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 19:00:00) in space  (linearNDFast)
13:44:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:38 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 366 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 366 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 366 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 366 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 366 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 1
13:44:38 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 19:00:00, weight 0.10) and
                      after (2023-09-01 20:00:00, weight 0.90) in time
13:44:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055470008120125 and -58.98035260453437 degrees.
13:44:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055470008120125 and -58.98035260453437 degrees.
13:44:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:38 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:38 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:38 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.628653 (min) 1.06633 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.997541 (min) 0.73787 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.34643e-05 (min) 0.000322076 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.07277 (min) 10.1754 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.42084 (min) 5.88965 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.24244 (min) 13.9905 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1527:               1320 active elements
13:44:38 DEBUG   opendrift.models.basemodel:1538:               59.12049521027091 <- latitude  -> 59.17499831020442
13:44:38 DEBUG   opendrift.models.basemodel:1543:               10.944540550683277 <- longitude -> 11.019657951748231
13:44:38 DEBUG   opendrift.models.basemodel:1548:               -13.045611135669692   <- z ->   0.0
13:44:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:38 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:38 DEBUG   opendrift.models.physics_methods:1049:    min: 0.068092, mean: 3.430087, max: 8.694565
13:44:38 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.068092, mean: 3.430087, max: 8.694565
13:44:38 DEBUG   opendrift.models.basemodel:813: 98 elements hit coastline, moving back to water
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:38 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:38 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:38 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1320 elements above 0.100m with wind-sheared ocean current (0.024541 m/s - 0.147454 m/s)
13:44:38 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:38 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:38 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09354423036821365
13:44:38 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:38 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:38 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:38 DEBUG   opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 4 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 117 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 6 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:38 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
13:44:38 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:38 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:38 DEBUG   opendrift.models.basemodel:2945: 1320 active elements (0 deactivated)
13:44:38 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8680, already seeded 1320
13:44:38 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 1355 elements
13:44:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:38 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.37273 (min) 13.9239 (max)
13:44:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1527:               1355 active elements
13:44:38 DEBUG   opendrift.models.basemodel:1538:               59.12086594684122 <- latitude  -> 59.17416947258127
13:44:38 DEBUG   opendrift.models.basemodel:1543:               10.944334146985117 <- longitude -> 11.019870817145348
13:44:38 DEBUG   opendrift.models.basemodel:1548:               -13.099389305114746   <- z ->   0.0
13:44:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:44:38 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:38 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:03:54.338376 - step 39 of 216 - 1355 active elements (0 deactivated)
13:44:38 DEBUG   opendrift.models.basemodel:2888: 8645 elements scheduled.
13:44:38 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 1355 elements
13:44:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:38 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:38 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 1355 elements
13:44:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:39 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:39 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:39 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 21:00:00)
13:44:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:39 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 388 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 796 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 796 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 796 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 796 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 796 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 1
13:44:39 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.93) and
                      after (2023-09-01 21:00:00, weight 0.07) in time
13:44:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05567640476261 and -58.98013972543696 degrees.
13:44:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05567640476261 and -58.98013972543696 degrees.
13:44:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:39 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:39 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:39 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.680472 (min) 1.20279 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07387 (min) 0.75388 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.74265e-05 (min) 0.000328533 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.01068 (min) 9.10309 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.65602 (min) 6.28075 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.37273 (min) 13.9239 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1527:               1355 active elements
13:44:39 DEBUG   opendrift.models.basemodel:1538:               59.12086594684122 <- latitude  -> 59.17416947258127
13:44:39 DEBUG   opendrift.models.basemodel:1543:               10.944334146985117 <- longitude -> 11.019870817145348
13:44:39 DEBUG   opendrift.models.basemodel:1548:               -13.099389305114746   <- z ->   0.0
13:44:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:39 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:39 DEBUG   opendrift.models.physics_methods:1049:    min: 0.153002, mean: 3.357159, max: 8.237130
13:44:39 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.153002, mean: 3.357159, max: 8.237130
13:44:39 DEBUG   opendrift.models.basemodel:813: 85 elements hit coastline, moving back to water
13:44:39 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:39 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:39 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:39 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 1355 elements above 0.100m with wind-sheared ocean current (0.005506 m/s - 0.138442 m/s)
13:44:39 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:39 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:39 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.083960549830513
13:44:39 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:39 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:39 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:39 DEBUG   opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:39 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:39 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:39 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:39 DEBUG   opendrift.models.basemodel:2945: 1355 active elements (0 deactivated)
13:44:39 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8645, already seeded 1355
13:44:39 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 1389 elements
13:44:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:39 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.0641 (max)
13:44:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1527:               1389 active elements
13:44:39 DEBUG   opendrift.models.basemodel:1538:               59.11998081854875 <- latitude  -> 59.17409071073426
13:44:39 DEBUG   opendrift.models.basemodel:1543:               10.944013773621922 <- longitude -> 11.01836601479321
13:44:39 DEBUG   opendrift.models.basemodel:1548:               -12.924101104736328   <- z ->   0.0
13:44:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:44:39 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:39 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:13:54.338376 - step 40 of 216 - 1389 active elements (0 deactivated)
13:44:39 DEBUG   opendrift.models.basemodel:2888: 8611 elements scheduled.
13:44:39 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 1389 elements
13:44:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:39 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:39 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 1389 elements
13:44:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:40 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x21x5) for time after (2023-09-01 21:00:00)
13:44:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:40 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 404 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 404 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 404 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 404 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 404 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 820 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 355 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:40 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.77) and
                      after (2023-09-01 21:00:00, weight 0.23) in time
13:44:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05599678462326 and -58.981644540567274 degrees.
13:44:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05599678462326 and -58.981644540567274 degrees.
13:44:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:40 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:40 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:40 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.590768 (min) 1.10711 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.20306 (min) 0.661637 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.43511e-05 (min) 0.000364407 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.09445 (min) 10.8091 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.72636 (min) 6.37927 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.0641 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1527:               1389 active elements
13:44:40 DEBUG   opendrift.models.basemodel:1538:               59.11998081854875 <- latitude  -> 59.17409071073426
13:44:40 DEBUG   opendrift.models.basemodel:1543:               10.944013773621922 <- longitude -> 11.01836601479321
13:44:40 DEBUG   opendrift.models.basemodel:1548:               -12.924101104736328   <- z ->   0.0
13:44:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:40 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:40 DEBUG   opendrift.models.physics_methods:1049:    min: 0.046883, mean: 3.226184, max: 9.295820
13:44:40 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.046883, mean: 3.226184, max: 9.295820
13:44:40 DEBUG   opendrift.models.basemodel:813: 101 elements hit coastline, moving back to water
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:40 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:40 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:40 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 1389 elements above 0.100m with wind-sheared ocean current (0.004259 m/s - 0.146730 m/s)
13:44:40 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:40 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:40 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10692871538503647
13:44:40 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:40 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:40 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:40 DEBUG   opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 8 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:40 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:40 DEBUG   opendrift.models.basemodel:2945: 1389 active elements (0 deactivated)
13:44:40 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8611, already seeded 1389
13:44:40 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 1424 elements
13:44:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:40 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01741 (min) 14.1075 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1527:               1424 active elements
13:44:40 DEBUG   opendrift.models.basemodel:1538:               59.11965436304527 <- latitude  -> 59.17491599958835
13:44:40 DEBUG   opendrift.models.basemodel:1543:               10.944752722125951 <- longitude -> 11.021823065479722
13:44:40 DEBUG   opendrift.models.basemodel:1548:               -14.064104080200195   <- z ->   0.0
13:44:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:44:40 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:40 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:23:54.338376 - step 41 of 216 - 1424 active elements (0 deactivated)
13:44:40 DEBUG   opendrift.models.basemodel:2888: 8576 elements scheduled.
13:44:40 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 1424 elements
13:44:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 1424 elements
13:44:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:40 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 21:00:00)
13:44:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:40 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 427 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 427 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 427 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 427 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 427 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 1
13:44:40 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.60) and
                      after (2023-09-01 21:00:00, weight 0.40) in time
13:44:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05525783902876 and -58.97818748874855 degrees.
13:44:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05525783902876 and -58.97818748874855 degrees.
13:44:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:40 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:40 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:40 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.816874 (min) 1.28287 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.910899 (min) 0.739657 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.8832e-05 (min) 0.000351941 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.08917 (min) 11.2613 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.82221 (min) 5.73465 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01741 (min) 14.1075 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1527:               1424 active elements
13:44:40 DEBUG   opendrift.models.basemodel:1538:               59.11965436304527 <- latitude  -> 59.17491599958835
13:44:40 DEBUG   opendrift.models.basemodel:1543:               10.944752722125951 <- longitude -> 11.021823065479722
13:44:40 DEBUG   opendrift.models.basemodel:1548:               -14.064104080200195   <- z ->   0.0
13:44:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:40 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:40 DEBUG   opendrift.models.physics_methods:1049:    min: 0.045858, mean: 2.946125, max: 9.626650
13:44:40 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.045858, mean: 2.946125, max: 9.626650
13:44:40 DEBUG   opendrift.models.basemodel:813: 103 elements hit coastline, moving back to water
13:44:40 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:40 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:40 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:40 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1424 elements above 0.100m with wind-sheared ocean current (0.009262 m/s - 0.137705 m/s)
13:44:40 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:40 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:40 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11467484239585876
13:44:40 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:40 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:40 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:40 DEBUG   opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 9 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:40 DEBUG   opendrift.models.oceandrift:582: 75 elements penetrated seafloor, lifting up
13:44:40 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:40 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:40 DEBUG   opendrift.models.basemodel:2945: 1424 active elements (0 deactivated)
13:44:40 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8576, already seeded 1424
13:44:40 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 1459 elements
13:44:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:40 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.30227 (min) 14.1075 (max)
13:44:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1527:               1459 active elements
13:44:40 DEBUG   opendrift.models.basemodel:1538:               59.11965436304527 <- latitude  -> 59.174712504566244
13:44:40 DEBUG   opendrift.models.basemodel:1543:               10.945457021228354 <- longitude -> 11.020768082509747
13:44:40 DEBUG   opendrift.models.basemodel:1548:               -14.054104080200196   <- z ->   0.0
13:44:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:44:40 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:40 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:33:54.338376 - step 42 of 216 - 1459 active elements (0 deactivated)
13:44:40 DEBUG   opendrift.models.basemodel:2888: 8541 elements scheduled.
13:44:40 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 1459 elements
13:44:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:40 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:40 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 1459 elements
13:44:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:41 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:41 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:41 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 20x20x5) for time after (2023-09-01 21:00:00)
13:44:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:41 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 458 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 458 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 458 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 458 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 458 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
13:44:41 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.43) and
                      after (2023-09-01 21:00:00, weight 0.57) in time
13:44:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.054553536728555 and -58.97924246247382 degrees.
13:44:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.054553536728555 and -58.97924246247382 degrees.
13:44:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:41 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:41 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:41 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.720879 (min) 1.04482 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03353 (min) 0.623238 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.60437e-05 (min) 0.000384649 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.0045 (min) 10.973 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.48324 (min) 6.14541 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.30227 (min) 14.1075 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1527:               1459 active elements
13:44:41 DEBUG   opendrift.models.basemodel:1538:               59.11965436304527 <- latitude  -> 59.174712504566244
13:44:41 DEBUG   opendrift.models.basemodel:1543:               10.945457021228354 <- longitude -> 11.020768082509747
13:44:41 DEBUG   opendrift.models.basemodel:1548:               -14.054104080200196   <- z ->   0.0
13:44:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:41 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:41 DEBUG   opendrift.models.physics_methods:1049:    min: 0.064801, mean: 2.877922, max: 9.545001
13:44:41 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.064801, mean: 2.877922, max: 9.545001
13:44:41 DEBUG   opendrift.models.basemodel:813: 106 elements hit coastline, moving back to water
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:41 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:41 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:41 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1459 elements above 0.100m with wind-sheared ocean current (0.020953 m/s - 0.100931 m/s)
13:44:41 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:41 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:41 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11273792443187713
13:44:41 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:41 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:41 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:41 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 90 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 78 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:41 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
13:44:41 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:41 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:41 DEBUG   opendrift.models.basemodel:2945: 1459 active elements (0 deactivated)
13:44:41 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8541, already seeded 1459
13:44:41 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 1493 elements
13:44:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:41 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.23623 (min) 13.9683 (max)
13:44:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1527:               1493 active elements
13:44:41 DEBUG   opendrift.models.basemodel:1538:               59.12079441556452 <- latitude  -> 59.17654004385263
13:44:41 DEBUG   opendrift.models.basemodel:1543:               10.943228197036573 <- longitude -> 11.02148685394763
13:44:41 DEBUG   opendrift.models.basemodel:1548:               -12.882422676086426   <- z ->   0.0
13:44:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:44:41 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:41 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:43:54.338376 - step 43 of 216 - 1493 active elements (0 deactivated)
13:44:41 DEBUG   opendrift.models.basemodel:2888: 8507 elements scheduled.
13:44:41 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 1493 elements
13:44:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:41 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:41 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 1493 elements
13:44:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:42 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:42 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x20x5) for time after (2023-09-01 21:00:00)
13:44:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:42 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 1
13:44:42 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.27) and
                      after (2023-09-01 21:00:00, weight 0.73) in time
13:44:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05678236150802 and -58.97852369480725 degrees.
13:44:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05678236150802 and -58.97852369480725 degrees.
13:44:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:42 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:42 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:42 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.6902 (min) 1.35654 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11112 (min) 0.671701 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.97564e-05 (min) 0.000395445 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.64253 (min) 8.82148 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.41793 (min) 4.49726 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.23623 (min) 13.9683 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1527:               1493 active elements
13:44:42 DEBUG   opendrift.models.basemodel:1538:               59.12079441556452 <- latitude  -> 59.17654004385263
13:44:42 DEBUG   opendrift.models.basemodel:1543:               10.943228197036573 <- longitude -> 11.02148685394763
13:44:42 DEBUG   opendrift.models.basemodel:1548:               -12.672990798950195   <- z ->   0.0
13:44:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:42 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:42 DEBUG   opendrift.models.physics_methods:1049:    min: 0.038951, mean: 2.702544, max: 7.675464
13:44:42 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.038951, mean: 2.702544, max: 7.675464
13:44:42 DEBUG   opendrift.models.basemodel:813: 113 elements hit coastline, moving back to water
13:44:42 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:42 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:42 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:42 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1493 elements above 0.100m with wind-sheared ocean current (0.009278 m/s - 0.128775 m/s)
13:44:42 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:42 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:42 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07290140980298995
13:44:42 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:42 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:42 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:42 DEBUG   opendrift.models.oceandrift:582: 123 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 88 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:42 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:42 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:42 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:42 DEBUG   opendrift.models.basemodel:2945: 1493 active elements (0 deactivated)
13:44:42 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8507, already seeded 1493
13:44:42 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 1528 elements
13:44:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:42 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.0415 (max)
13:44:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1527:               1528 active elements
13:44:42 DEBUG   opendrift.models.basemodel:1538:               59.12205787952294 <- latitude  -> 59.17710235808325
13:44:42 DEBUG   opendrift.models.basemodel:1543:               10.94295178480265 <- longitude -> 11.023498745160392
13:44:42 DEBUG   opendrift.models.basemodel:1548:               -13.048400518095281   <- z ->   0.0
13:44:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:44:42 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:42 INFO    opendrift.models.basemodel:2882: 2023-09-01 20:53:54.338376 - step 44 of 216 - 1528 active elements (0 deactivated)
13:44:42 DEBUG   opendrift.models.basemodel:2888: 8472 elements scheduled.
13:44:42 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 1528 elements
13:44:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:42 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:42 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 1528 elements
13:44:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 20:00:00 (before)
                2023-09-01 21:00:00 (after)
13:44:43 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:43 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 21:00:00)
13:44:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 20:00:00) in space  (linearNDFast)
13:44:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:43 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 497 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 955 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 955 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 955 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 955 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 955 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 450 elements, expanding data 1
13:44:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:43 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 20:00:00, weight 0.10) and
                      after (2023-09-01 21:00:00, weight 0.90) in time
13:44:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05705877719286 and -58.97651180985528 degrees.
13:44:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05705877719286 and -58.97651180985528 degrees.
13:44:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:43 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:43 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:43 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.66355 (min) 1.1838 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0706 (min) 0.738958 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.58559e-05 (min) 0.000377457 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.84801 (min) 9.41626 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.71194 (min) 5.64871 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.0415 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1527:               1528 active elements
13:44:43 DEBUG   opendrift.models.basemodel:1538:               59.12205787952294 <- latitude  -> 59.17710235808325
13:44:43 DEBUG   opendrift.models.basemodel:1543:               10.94295178480265 <- longitude -> 11.023498745160392
13:44:43 DEBUG   opendrift.models.basemodel:1548:               -13.048400518095281   <- z ->   0.0
13:44:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:43 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:43 DEBUG   opendrift.models.physics_methods:1049:    min: 0.045045, mean: 2.489652, max: 8.060560
13:44:43 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.045045, mean: 2.489652, max: 8.060560
13:44:43 DEBUG   opendrift.models.basemodel:813: 111 elements hit coastline, moving back to water
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:43 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:43 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:43 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1528 elements above 0.100m with wind-sheared ocean current (0.002599 m/s - 0.153784 m/s)
13:44:43 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:43 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:43 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08039978779752731
13:44:43 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:43 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:43 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:43 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 83 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 85 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 70 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 71 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:43 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:43 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:43 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:43 DEBUG   opendrift.models.basemodel:2945: 1528 active elements (0 deactivated)
13:44:43 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8472, already seeded 1528
13:44:43 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 1563 elements
13:44:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:43 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.06952 (min) 14.1487 (max)
13:44:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1527:               1563 active elements
13:44:43 DEBUG   opendrift.models.basemodel:1538:               59.12127562644526 <- latitude  -> 59.17651621110333
13:44:43 DEBUG   opendrift.models.basemodel:1543:               10.943861031755047 <- longitude -> 11.021133232976995
13:44:43 DEBUG   opendrift.models.basemodel:1548:               -13.08852433886474   <- z ->   0.0
13:44:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:44:43 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:43 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:03:54.338376 - step 45 of 216 - 1563 active elements (0 deactivated)
13:44:43 DEBUG   opendrift.models.basemodel:2888: 8437 elements scheduled.
13:44:43 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 1563 elements
13:44:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:43 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:43 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 1563 elements
13:44:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:44 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:44 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:44 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 21x21x5) for time after (2023-09-01 22:00:00)
13:44:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:44 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 992 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 992 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 992 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 992 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 992 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 480 elements, expanding data 1
13:44:44 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.93) and
                      after (2023-09-01 22:00:00, weight 0.07) in time
13:44:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056149528045104 and -58.978877314864945 degrees.
13:44:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056149528045104 and -58.978877314864945 degrees.
13:44:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:44 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:44 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:44 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.656546 (min) 1.31035 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.12758 (min) 0.869238 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.75845e-05 (min) 0.000499459 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.18961 (min) 8.74472 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.21781 (min) 5.53394 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.06952 (min) 14.1487 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1527:               1563 active elements
13:44:44 DEBUG   opendrift.models.basemodel:1538:               59.12127562644526 <- latitude  -> 59.17651621110333
13:44:44 DEBUG   opendrift.models.basemodel:1543:               10.943861031755047 <- longitude -> 11.021133232976995
13:44:44 DEBUG   opendrift.models.basemodel:1548:               -13.08852433886474   <- z ->   0.0
13:44:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:44 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:44 DEBUG   opendrift.models.physics_methods:1049:    min: 0.053924, mean: 2.459941, max: 7.545983
13:44:44 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.053924, mean: 2.459941, max: 7.545983
13:44:44 DEBUG   opendrift.models.basemodel:813: 126 elements hit coastline, moving back to water
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
13:44:44 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:44 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:44 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1563 elements above 0.100m with wind-sheared ocean current (0.013024 m/s - 0.111701 m/s)
13:44:44 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:44 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:44 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07046268201072693
13:44:44 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:44 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:44 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:44 DEBUG   opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 96 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 96 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 92 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:44 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:44 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:44 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:44 DEBUG   opendrift.models.basemodel:2945: 1563 active elements (0 deactivated)
13:44:44 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8437, already seeded 1563
13:44:44 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 1598 elements
13:44:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:44 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.17643 (min) 14.0784 (max)
13:44:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1527:               1598 active elements
13:44:44 DEBUG   opendrift.models.basemodel:1538:               59.12101179474258 <- latitude  -> 59.17840567225414
13:44:44 DEBUG   opendrift.models.basemodel:1543:               10.944938801480987 <- longitude -> 11.022664395184906
13:44:44 DEBUG   opendrift.models.basemodel:1548:               -13.02181632733275   <- z ->   0.0
13:44:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:44:44 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:44 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:13:54.338376 - step 46 of 216 - 1598 active elements (0 deactivated)
13:44:44 DEBUG   opendrift.models.basemodel:2888: 8402 elements scheduled.
13:44:44 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 1598 elements
13:44:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:44 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:44 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 1598 elements
13:44:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:45 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:45 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:45 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
13:44:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:45 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1029 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1029 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1029 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1029 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1029 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 512 elements, expanding data 1
13:44:45 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.77) and
                      after (2023-09-01 22:00:00, weight 0.23) in time
13:44:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055071763418226 and -58.977346156659365 degrees.
13:44:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055071763418226 and -58.977346156659365 degrees.
13:44:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:45 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:45 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:45 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.749135 (min) 1.31281 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01366 (min) 0.705456 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.26682e-05 (min) 0.000479001 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.556 (min) 8.35506 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.98996 (min) 6.36693 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.17643 (min) 14.0784 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1527:               1598 active elements
13:44:45 DEBUG   opendrift.models.basemodel:1538:               59.12101179474258 <- latitude  -> 59.17840567225414
13:44:45 DEBUG   opendrift.models.basemodel:1543:               10.944938801480987 <- longitude -> 11.022664395184906
13:44:45 DEBUG   opendrift.models.basemodel:1548:               -13.02181632733275   <- z ->   0.0
13:44:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:45 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:45 DEBUG   opendrift.models.physics_methods:1049:    min: 0.053303, mean: 2.353838, max: 7.178545
13:44:45 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.053303, mean: 2.353838, max: 7.178545
13:44:45 DEBUG   opendrift.models.basemodel:813: 126 elements hit coastline, moving back to water
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:45 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:45 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:45 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1598 elements above 0.100m with wind-sheared ocean current (0.006764 m/s - 0.132306 m/s)
13:44:45 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:45 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:45 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06376801630242347
13:44:45 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:45 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:45 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:45 DEBUG   opendrift.models.oceandrift:582: 154 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 124 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 74 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:45 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:45 DEBUG   opendrift.models.oceandrift:600: 7 elements reached seafloor, set to bottom
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:44:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
13:44:45 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:45 DEBUG   opendrift.models.basemodel:2945: 1598 active elements (0 deactivated)
13:44:45 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8402, already seeded 1598
13:44:45 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 1632 elements
13:44:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:45 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.1737 (max)
13:44:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1527:               1632 active elements
13:44:45 DEBUG   opendrift.models.basemodel:1538:               59.1197659198363 <- latitude  -> 59.1781022558467
13:44:45 DEBUG   opendrift.models.basemodel:1543:               10.943014651011737 <- longitude -> 11.022694017699742
13:44:45 DEBUG   opendrift.models.basemodel:1548:               -14.068521499633789   <- z ->   0.0
13:44:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:44:45 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:45 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:23:54.338376 - step 47 of 216 - 1632 active elements (0 deactivated)
13:44:45 DEBUG   opendrift.models.basemodel:2888: 8368 elements scheduled.
13:44:45 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 1632 elements
13:44:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:45 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:45 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 1632 elements
13:44:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:46 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:46 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
13:44:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:46 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 535 elements, expanding data 1
13:44:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:46 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.60) and
                      after (2023-09-01 22:00:00, weight 0.40) in time
13:44:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056995904628224 and -58.97731652600248 degrees.
13:44:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056995904628224 and -58.97731652600248 degrees.
13:44:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:46 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:46 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:46 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.653705 (min) 1.3019 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03639 (min) 0.640281 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000102229 (min) 0.000490244 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.06739 (min) 8.86236 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.43284 (min) 6.5249 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.1737 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1527:               1632 active elements
13:44:46 DEBUG   opendrift.models.basemodel:1538:               59.1197659198363 <- latitude  -> 59.1781022558467
13:44:46 DEBUG   opendrift.models.basemodel:1543:               10.943014651011737 <- longitude -> 11.022694017699742
13:44:46 DEBUG   opendrift.models.basemodel:1548:               -14.060575485229492   <- z ->   0.0
13:44:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:46 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:46 DEBUG   opendrift.models.physics_methods:1049:    min: 0.065774, mean: 2.203546, max: 7.658712
13:44:46 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.065774, mean: 2.203546, max: 7.658712
13:44:46 DEBUG   opendrift.models.basemodel:813: 117 elements hit coastline, moving back to water
13:44:46 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:46 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:46 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:46 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1632 elements above 0.100m with wind-sheared ocean current (0.001901 m/s - 0.101166 m/s)
13:44:46 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:46 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:46 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07258356454356193
13:44:46 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:46 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:46 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:46 DEBUG   opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 11 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 10 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
13:44:46 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
13:44:46 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:46 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:46 DEBUG   opendrift.models.basemodel:2945: 1632 active elements (0 deactivated)
13:44:46 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8368, already seeded 1632
13:44:46 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 1667 elements
13:44:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:46 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.1867 (max)
13:44:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1527:               1667 active elements
13:44:46 DEBUG   opendrift.models.basemodel:1538:               59.11912586000927 <- latitude  -> 59.17935806414262
13:44:46 DEBUG   opendrift.models.basemodel:1543:               10.944003367941022 <- longitude -> 11.022222582558268
13:44:46 DEBUG   opendrift.models.basemodel:1548:               -14.060575485229492   <- z ->   0.0
13:44:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
13:44:46 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:46 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:33:54.338376 - step 48 of 216 - 1667 active elements (0 deactivated)
13:44:46 DEBUG   opendrift.models.basemodel:2888: 8333 elements scheduled.
13:44:46 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 1667 elements
13:44:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:46 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:46 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 1667 elements
13:44:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:47 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:47 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:47 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x20x5) for time after (2023-09-01 22:00:00)
13:44:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:47 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1056 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1056 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1056 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1056 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1056 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 555 elements, expanding data 1
13:44:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:47 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.43) and
                      after (2023-09-01 22:00:00, weight 0.57) in time
13:44:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05600718176232 and -58.97778796332783 degrees.
13:44:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05600718176232 and -58.97778796332783 degrees.
13:44:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:47 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:47 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:47 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.660348 (min) 1.40128 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.970353 (min) 0.579174 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000127242 (min) 0.00051989 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.68192 (min) 7.8462 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.593 (min) 6.03148 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.1867 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1527:               1667 active elements
13:44:47 DEBUG   opendrift.models.basemodel:1538:               59.11912586000927 <- latitude  -> 59.17935806414262
13:44:47 DEBUG   opendrift.models.basemodel:1543:               10.944003367941022 <- longitude -> 11.022222582558268
13:44:47 DEBUG   opendrift.models.basemodel:1548:               -14.060575485229492   <- z ->   0.0
13:44:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:47 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:47 DEBUG   opendrift.models.physics_methods:1049:    min: 0.059232, mean: 2.199613, max: 6.749142
13:44:47 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.059232, mean: 2.199613, max: 6.749142
13:44:47 DEBUG   opendrift.models.basemodel:813: 130 elements hit coastline, moving back to water
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:44:47 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:47 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:47 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1667 elements above 0.100m with wind-sheared ocean current (0.002730 m/s - 0.110531 m/s)
13:44:47 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:47 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:47 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05636778011043548
13:44:47 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:47 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:47 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:47 DEBUG   opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 93 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:47 DEBUG   opendrift.models.oceandrift:582: 87 elements penetrated seafloor, lifting up
13:44:47 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:47 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:47 DEBUG   opendrift.models.basemodel:2945: 1667 active elements (0 deactivated)
13:44:47 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8333, already seeded 1667
13:44:47 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 1702 elements
13:44:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:47 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.3282 (max)
13:44:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1527:               1702 active elements
13:44:47 DEBUG   opendrift.models.basemodel:1538:               59.117228695763885 <- latitude  -> 59.17977146234247
13:44:47 DEBUG   opendrift.models.basemodel:1543:               10.94514886009452 <- longitude -> 11.023022005007324
13:44:47 DEBUG   opendrift.models.basemodel:1548:               -14.050575485229492   <- z ->   0.0
13:44:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:836: Lifting 117 elements to seafloor.
13:44:47 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:47 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:43:54.338376 - step 49 of 216 - 1702 active elements (0 deactivated)
13:44:47 DEBUG   opendrift.models.basemodel:2888: 8298 elements scheduled.
13:44:47 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 1702 elements
13:44:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:47 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:47 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 1702 elements
13:44:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:48 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:48 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
13:44:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:48 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1106 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1106 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1106 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1106 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1106 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:48 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.27) and
                      after (2023-09-01 22:00:00, weight 0.73) in time
13:44:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.054861688448284 and -58.97698854686585 degrees.
13:44:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.054861688448284 and -58.97698854686585 degrees.
13:44:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:48 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:48 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:48 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.709875 (min) 1.21721 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.934978 (min) 0.5984 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000135676 (min) 0.000526085 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.49336 (min) 7.14138 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.02414 (min) 7.143 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.3282 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1527:               1702 active elements
13:44:48 DEBUG   opendrift.models.basemodel:1538:               59.117228695763885 <- latitude  -> 59.17977146234247
13:44:48 DEBUG   opendrift.models.basemodel:1543:               10.94514886009452 <- longitude -> 11.023022005007324
13:44:48 DEBUG   opendrift.models.basemodel:1548:               -14.050575485229492   <- z ->   0.0
13:44:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:48 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:48 DEBUG   opendrift.models.physics_methods:1049:    min: 0.071324, mean: 2.141355, max: 6.437561
13:44:48 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.071324, mean: 2.141355, max: 6.437561
13:44:48 DEBUG   opendrift.models.basemodel:813: 143 elements hit coastline, moving back to water
13:44:48 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:48 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:48 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:48 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1702 elements above 0.100m with wind-sheared ocean current (0.005042 m/s - 0.122958 m/s)
13:44:48 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:48 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:48 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05128373459704398
13:44:48 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:48 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:48 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:48 DEBUG   opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 76 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 86 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:48 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:48 DEBUG   opendrift.models.basemodel:2945: 1702 active elements (0 deactivated)
13:44:48 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8298, already seeded 1702
13:44:48 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 1736 elements
13:44:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:48 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5489 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1527:               1736 active elements
13:44:48 DEBUG   opendrift.models.basemodel:1538:               59.114234113458515 <- latitude  -> 59.180050687282645
13:44:48 DEBUG   opendrift.models.basemodel:1543:               10.944305284531966 <- longitude -> 11.024401936591854
13:44:48 DEBUG   opendrift.models.basemodel:1548:               -14.050576438903809   <- z ->   0.0
13:44:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
13:44:48 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:48 INFO    opendrift.models.basemodel:2882: 2023-09-01 21:53:54.338376 - step 50 of 216 - 1736 active elements (0 deactivated)
13:44:48 DEBUG   opendrift.models.basemodel:2888: 8264 elements scheduled.
13:44:48 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 1736 elements
13:44:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 1736 elements
13:44:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 21:00:00 (before)
                2023-09-01 22:00:00 (after)
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:48 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:48 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 22:00:00)
13:44:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 21:00:00) in space  (linearNDFast)
13:44:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:48 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 663 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1144 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 188 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1144 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 188 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1144 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 188 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1144 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 188 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1144 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 188 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 617 elements, expanding data 1
13:44:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:48 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 21:00:00, weight 0.10) and
                      after (2023-09-01 22:00:00, weight 0.90) in time
13:44:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05570526553588 and -58.97560860970598 degrees.
13:44:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05570526553588 and -58.97560860970598 degrees.
13:44:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:48 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:48 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:48 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.725858 (min) 1.19906 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.22183 (min) 0.631721 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000152075 (min) 0.000480097 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.67817 (min) 6.66869 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.50637 (min) 6.95439 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5489 (max)
13:44:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:48 DEBUG   opendrift.models.basemodel:1527:               1736 active elements
13:44:48 DEBUG   opendrift.models.basemodel:1538:               59.114234113458515 <- latitude  -> 59.180050687282645
13:44:48 DEBUG   opendrift.models.basemodel:1543:               10.944305284531966 <- longitude -> 11.024401936591854
13:44:48 DEBUG   opendrift.models.basemodel:1548:               -14.050576438903809   <- z ->   0.0
13:44:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:48 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:48 DEBUG   opendrift.models.physics_methods:1049:    min: 0.043640, mean: 2.208445, max: 7.913396
13:44:48 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.043640, mean: 2.208445, max: 7.913396
13:44:48 DEBUG   opendrift.models.basemodel:813: 145 elements hit coastline, moving back to water
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:44:48 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:48 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:48 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 1736 elements above 0.100m with wind-sheared ocean current (0.009445 m/s - 0.110021 m/s)
13:44:48 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:48 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:48 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07749096805389404
13:44:48 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:48 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:48 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:48 DEBUG   opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 80 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 73 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:48 DEBUG   opendrift.models.oceandrift:582: 82 elements penetrated seafloor, lifting up
13:44:48 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:48 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:48 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:48 DEBUG   opendrift.models.basemodel:2945: 1736 active elements (0 deactivated)
13:44:48 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8264, already seeded 1736
13:44:48 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 1771 elements
13:44:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:49 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5912 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1527:               1771 active elements
13:44:49 DEBUG   opendrift.models.basemodel:1538:               59.11338464489742 <- latitude  -> 59.179622837790205
13:44:49 DEBUG   opendrift.models.basemodel:1543:               10.94251707272754 <- longitude -> 11.025236472942868
13:44:49 DEBUG   opendrift.models.basemodel:1548:               -13.822258224487305   <- z ->   0.0
13:44:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 119 elements to seafloor.
13:44:49 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:49 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:03:54.338376 - step 51 of 216 - 1771 active elements (0 deactivated)
13:44:49 DEBUG   opendrift.models.basemodel:2888: 8229 elements scheduled.
13:44:49 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 1771 elements
13:44:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:49 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:49 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 1771 elements
13:44:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:49 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:49 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:49 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
13:44:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:49 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1178 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1178 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1178 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1178 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1178 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 646 elements, expanding data 1
13:44:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:49 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.93) and
                      after (2023-09-01 23:00:00, weight 0.07) in time
13:44:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05749348345079 and -58.974774059859115 degrees.
13:44:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05749348345079 and -58.974774059859115 degrees.
13:44:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:49 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:49 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:49 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.707114 (min) 1.22555 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.853779 (min) 0.761704 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.00013364 (min) 0.00054493 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.05904 (min) 5.81771 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.63342 (min) 6.65477 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5912 (max)
13:44:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:49 DEBUG   opendrift.models.basemodel:1527:               1771 active elements
13:44:49 DEBUG   opendrift.models.basemodel:1538:               59.11338464489742 <- latitude  -> 59.179622837790205
13:44:49 DEBUG   opendrift.models.basemodel:1543:               10.94251707272754 <- longitude -> 11.025236472942868
13:44:49 DEBUG   opendrift.models.basemodel:1548:               -13.710354804992676   <- z ->   0.0
13:44:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:49 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:49 DEBUG   opendrift.models.physics_methods:1049:    min: 0.058677, mean: 2.180458, max: 7.870222
13:44:49 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.058677, mean: 2.180458, max: 7.870222
13:44:49 DEBUG   opendrift.models.basemodel:813: 141 elements hit coastline, moving back to water
13:44:49 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:49 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:49 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:49 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1771 elements above 0.100m with wind-sheared ocean current (0.006167 m/s - 0.128530 m/s)
13:44:49 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:49 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:49 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07664775628526688
13:44:49 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:49 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:49 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:49 DEBUG   opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 89 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 96 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:44:49 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:49 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:44:49 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:44:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:44:49 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:49 DEBUG   opendrift.models.basemodel:2945: 1771 active elements (0 deactivated)
13:44:49 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8229, already seeded 1771
13:44:50 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 1806 elements
13:44:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:50 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5346 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1527:               1806 active elements
13:44:50 DEBUG   opendrift.models.basemodel:1538:               59.11384833384639 <- latitude  -> 59.17921231058665
13:44:50 DEBUG   opendrift.models.basemodel:1543:               10.94369040081128 <- longitude -> 11.02252761127109
13:44:50 DEBUG   opendrift.models.basemodel:1548:               -13.700354804992676   <- z ->   0.0
13:44:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 121 elements to seafloor.
13:44:50 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:50 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:13:54.338376 - step 52 of 216 - 1806 active elements (0 deactivated)
13:44:50 DEBUG   opendrift.models.basemodel:2888: 8194 elements scheduled.
13:44:50 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 1806 elements
13:44:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:50 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 1806 elements
13:44:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:50 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
13:44:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:50 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 707 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 707 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 707 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 707 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 707 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 661 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
13:44:50 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.77) and
                      after (2023-09-01 23:00:00, weight 0.23) in time
13:44:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05632014313587 and -58.97748293683938 degrees.
13:44:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05632014313587 and -58.97748293683938 degrees.
13:44:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:50 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:50 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:50 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.709892 (min) 1.15262 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.3585 (min) 0.853993 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000122188 (min) 0.000534778 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.62394 (min) 7.28839 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.40368 (min) 6.23933 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5346 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1527:               1806 active elements
13:44:50 DEBUG   opendrift.models.basemodel:1538:               59.11384833384639 <- latitude  -> 59.17921231058665
13:44:50 DEBUG   opendrift.models.basemodel:1543:               10.94369040081128 <- longitude -> 11.02252761127109
13:44:50 DEBUG   opendrift.models.basemodel:1548:               -13.700354804992676   <- z ->   0.0
13:44:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:50 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:50 DEBUG   opendrift.models.physics_methods:1049:    min: 0.073169, mean: 2.196309, max: 6.552666
13:44:50 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.073169, mean: 2.196309, max: 6.552666
13:44:50 DEBUG   opendrift.models.basemodel:813: 160 elements hit coastline, moving back to water
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:50 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:50 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:50 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1806 elements above 0.100m with wind-sheared ocean current (0.008854 m/s - 0.121042 m/s)
13:44:50 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:50 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:50 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05313390288765906
13:44:50 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:50 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:50 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:50 DEBUG   opendrift.models.oceandrift:582: 174 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 105 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 84 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 81 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 95 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:50 DEBUG   opendrift.models.oceandrift:582: 77 elements penetrated seafloor, lifting up
13:44:50 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:50 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:50 DEBUG   opendrift.models.basemodel:2945: 1806 active elements (0 deactivated)
13:44:50 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8194, already seeded 1806
13:44:50 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 1841 elements
13:44:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:50 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5411 (max)
13:44:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1527:               1841 active elements
13:44:50 DEBUG   opendrift.models.basemodel:1538:               59.112779927467216 <- latitude  -> 59.179320858620414
13:44:50 DEBUG   opendrift.models.basemodel:1543:               10.944154601400815 <- longitude -> 11.025099010889665
13:44:50 DEBUG   opendrift.models.basemodel:1548:               -13.57739058290269   <- z ->   0.0
13:44:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:836: Lifting 134 elements to seafloor.
13:44:50 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:50 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:23:54.338376 - step 53 of 216 - 1841 active elements (0 deactivated)
13:44:50 DEBUG   opendrift.models.basemodel:2888: 8159 elements scheduled.
13:44:50 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 1841 elements
13:44:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:50 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:50 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 1841 elements
13:44:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:51 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:51 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:51 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
13:44:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:51 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 729 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 729 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 729 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 729 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 729 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 686 elements, expanding data 1
13:44:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:44:51 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.60) and
                      after (2023-09-01 23:00:00, weight 0.40) in time
13:44:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055855955705205 and -58.974911537170925 degrees.
13:44:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055855955705205 and -58.974911537170925 degrees.
13:44:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:51 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:51 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:51 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.691823 (min) 1.17729 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.924269 (min) 0.711947 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000116441 (min) 0.000738295 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.46223 (min) 6.31008 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.84295 (min) 6.21888 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.5411 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1527:               1841 active elements
13:44:51 DEBUG   opendrift.models.basemodel:1538:               59.112779927467216 <- latitude  -> 59.179320858620414
13:44:51 DEBUG   opendrift.models.basemodel:1543:               10.944154601400815 <- longitude -> 11.025099010889665
13:44:51 DEBUG   opendrift.models.basemodel:1548:               -13.57739058290269   <- z ->   0.0
13:44:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:51 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:51 DEBUG   opendrift.models.physics_methods:1049:    min: 0.037073, mean: 2.202552, max: 6.721047
13:44:51 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.037073, mean: 2.202552, max: 6.721047
13:44:51 DEBUG   opendrift.models.basemodel:813: 170 elements hit coastline, moving back to water
13:44:51 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:51 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:51 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:51 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1841 elements above 0.100m with wind-sheared ocean current (0.003454 m/s - 0.138530 m/s)
13:44:51 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:51 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:51 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05589950666244506
13:44:51 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:51 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:51 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:51 DEBUG   opendrift.models.oceandrift:582: 164 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 91 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:51 DEBUG   opendrift.models.oceandrift:582: 103 elements penetrated seafloor, lifting up
13:44:51 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:51 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:51 DEBUG   opendrift.models.basemodel:2945: 1841 active elements (0 deactivated)
13:44:51 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8159, already seeded 1841
13:44:51 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 1875 elements
13:44:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:51 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.08133 (min) 14.6244 (max)
13:44:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1527:               1875 active elements
13:44:51 DEBUG   opendrift.models.basemodel:1538:               59.110487138361805 <- latitude  -> 59.18131651274726
13:44:51 DEBUG   opendrift.models.basemodel:1543:               10.942756655785312 <- longitude -> 11.026589786628154
13:44:51 DEBUG   opendrift.models.basemodel:1548:               -13.70280933380127   <- z ->   0.0
13:44:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:836: Lifting 142 elements to seafloor.
13:44:51 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:51 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:33:54.338376 - step 54 of 216 - 1875 active elements (0 deactivated)
13:44:51 DEBUG   opendrift.models.basemodel:2888: 8125 elements scheduled.
13:44:51 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 1875 elements
13:44:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:51 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:51 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 1875 elements
13:44:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:52 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:52 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x22x5) for time after (2023-09-01 23:00:00)
13:44:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:52 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1284 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1284 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1284 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1284 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1284 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 712 elements, expanding data 1
13:44:52 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.43) and
                      after (2023-09-01 23:00:00, weight 0.57) in time
13:44:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057253894972575 and -58.973420760683375 degrees.
13:44:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057253894972575 and -58.973420760683375 degrees.
13:44:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:52 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:52 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:52 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.725783 (min) 1.24469 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.912576 (min) 0.755666 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.00013766 (min) 0.000564387 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.44131 (min) 5.26052 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.34885 (min) 7.23365 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.08133 (min) 14.6244 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1527:               1875 active elements
13:44:52 DEBUG   opendrift.models.basemodel:1538:               59.110487138361805 <- latitude  -> 59.18131651274726
13:44:52 DEBUG   opendrift.models.basemodel:1543:               10.942756655785312 <- longitude -> 11.026589786628154
13:44:52 DEBUG   opendrift.models.basemodel:1548:               -13.622980117797852   <- z ->   0.0
13:44:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:52 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:52 DEBUG   opendrift.models.physics_methods:1049:    min: 0.089087, mean: 2.251397, max: 6.971653
13:44:52 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.089087, mean: 2.251397, max: 6.971653
13:44:52 DEBUG   opendrift.models.basemodel:813: 168 elements hit coastline, moving back to water
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:52 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:52 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:52 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 1875 elements above 0.100m with wind-sheared ocean current (0.012138 m/s - 0.097167 m/s)
13:44:52 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:52 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:52 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0601455178452301
13:44:52 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:52 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:52 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:52 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 119 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 106 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 13 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:52 DEBUG   opendrift.models.oceandrift:582: 79 elements penetrated seafloor, lifting up
13:44:52 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:52 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:52 DEBUG   opendrift.models.basemodel:2945: 1875 active elements (0 deactivated)
13:44:52 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8125, already seeded 1875
13:44:52 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 1910 elements
13:44:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:52 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01571 (min) 14.6938 (max)
13:44:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1527:               1910 active elements
13:44:52 DEBUG   opendrift.models.basemodel:1538:               59.11012056360607 <- latitude  -> 59.17949795342392
13:44:52 DEBUG   opendrift.models.basemodel:1543:               10.943752041366045 <- longitude -> 11.024806841978629
13:44:52 DEBUG   opendrift.models.basemodel:1548:               -13.622980117797852   <- z ->   0.0
13:44:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:836: Lifting 138 elements to seafloor.
13:44:52 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:52 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:43:54.338376 - step 55 of 216 - 1910 active elements (0 deactivated)
13:44:52 DEBUG   opendrift.models.basemodel:2888: 8090 elements scheduled.
13:44:52 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 1910 elements
13:44:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:52 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:52 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 1910 elements
13:44:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:53 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:53 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:53 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
13:44:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:53 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 785 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 785 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 785 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 785 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 785 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1339 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1339 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1339 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1339 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1339 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
13:44:53 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.27) and
                      after (2023-09-01 23:00:00, weight 0.73) in time
13:44:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056258513961396 and -58.97520370663017 degrees.
13:44:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056258513961396 and -58.97520370663017 degrees.
13:44:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:53 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:53 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:53 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.660521 (min) 1.15678 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.872213 (min) 0.90915 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000135973 (min) 0.000511014 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.90616 (min) 5.73635 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.16369 (min) 6.73479 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.01571 (min) 14.6938 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1527:               1910 active elements
13:44:53 DEBUG   opendrift.models.basemodel:1538:               59.11012056360607 <- latitude  -> 59.17949795342392
13:44:53 DEBUG   opendrift.models.basemodel:1543:               10.943752041366045 <- longitude -> 11.024806841978629
13:44:53 DEBUG   opendrift.models.basemodel:1548:               -13.622980117797852   <- z ->   0.0
13:44:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:53 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:53 DEBUG   opendrift.models.physics_methods:1049:    min: 0.048626, mean: 2.327912, max: 6.755715
13:44:53 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.048626, mean: 2.327912, max: 6.755715
13:44:53 DEBUG   opendrift.models.basemodel:813: 181 elements hit coastline, moving back to water
13:44:53 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:53 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:53 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:53 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 1910 elements above 0.100m with wind-sheared ocean current (0.011163 m/s - 0.107529 m/s)
13:44:53 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:53 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:53 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.05647761859734534
13:44:53 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:53 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:53 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:53 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 152 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:53 DEBUG   opendrift.models.oceandrift:582: 94 elements penetrated seafloor, lifting up
13:44:53 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:53 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:53 DEBUG   opendrift.models.basemodel:2945: 1910 active elements (0 deactivated)
13:44:53 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8090, already seeded 1910
13:44:53 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 1945 elements
13:44:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.05875 (min) 14.8694 (max)
13:44:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1527:               1945 active elements
13:44:53 DEBUG   opendrift.models.basemodel:1538:               59.10801798459693 <- latitude  -> 59.180621036706924
13:44:53 DEBUG   opendrift.models.basemodel:1543:               10.94188786339729 <- longitude -> 11.02957668383105
13:44:53 DEBUG   opendrift.models.basemodel:1548:               -13.612980117797852   <- z ->   0.0
13:44:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:836: Lifting 138 elements to seafloor.
13:44:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:53 INFO    opendrift.models.basemodel:2882: 2023-09-01 22:53:54.338376 - step 56 of 216 - 1945 active elements (0 deactivated)
13:44:53 DEBUG   opendrift.models.basemodel:2888: 8055 elements scheduled.
13:44:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 1945 elements
13:44:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 1945 elements
13:44:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 22:00:00 (before)
                2023-09-01 23:00:00 (after)
13:44:54 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:54 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:54 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x21x5) for time after (2023-09-01 23:00:00)
13:44:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 22:00:00) in space  (linearNDFast)
13:44:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:54 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1358 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1358 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1358 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1358 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1358 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 764 elements, expanding data 1
13:44:54 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 22:00:00, weight 0.10) and
                      after (2023-09-01 23:00:00, weight 0.90) in time
13:44:54 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05812269332438 and -58.97043387045348 degrees.
13:44:54 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05812269332438 and -58.97043387045348 degrees.
13:44:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:54 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:54 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:54 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:54 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:54 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.667088 (min) 1.07577 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.982576 (min) 0.714138 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000138218 (min) 0.000440392 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.5633 (min) 6.27939 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.55168 (min) 7.22893 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5.05875 (min) 14.8694 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1527:               1945 active elements
13:44:54 DEBUG   opendrift.models.basemodel:1538:               59.10801798459693 <- latitude  -> 59.180621036706924
13:44:54 DEBUG   opendrift.models.basemodel:1543:               10.94188786339729 <- longitude -> 11.02957668383105
13:44:54 DEBUG   opendrift.models.basemodel:1548:               -13.612980117797852   <- z ->   0.0
13:44:54 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:54 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:54 DEBUG   opendrift.models.physics_methods:1049:    min: 0.039850, mean: 2.402413, max: 7.121576
13:44:54 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.039850, mean: 2.402413, max: 7.121576
13:44:54 DEBUG   opendrift.models.basemodel:813: 182 elements hit coastline, moving back to water
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:44:54 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:54 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:54 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 1945 elements above 0.100m with wind-sheared ocean current (0.003355 m/s - 0.120358 m/s)
13:44:54 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:54 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:54 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06275999163039207
13:44:54 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:54 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:54 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:54 DEBUG   opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 114 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:54 DEBUG   opendrift.models.oceandrift:582: 97 elements penetrated seafloor, lifting up
13:44:54 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:54 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:54 DEBUG   opendrift.models.basemodel:2945: 1945 active elements (0 deactivated)
13:44:54 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8055, already seeded 1945
13:44:54 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 1979 elements
13:44:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:54 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:44:54 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:54 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:54 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:54 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.7444 (max)
13:44:54 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1527:               1979 active elements
13:44:54 DEBUG   opendrift.models.basemodel:1538:               59.10804794900064 <- latitude  -> 59.181180101178484
13:44:54 DEBUG   opendrift.models.basemodel:1543:               10.943571167497561 <- longitude -> 11.030567471949867
13:44:54 DEBUG   opendrift.models.basemodel:1548:               -13.612980117797852   <- z ->   0.0
13:44:54 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:836: Lifting 141 elements to seafloor.
13:44:54 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:54 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:03:54.338376 - step 57 of 216 - 1979 active elements (0 deactivated)
13:44:54 DEBUG   opendrift.models.basemodel:2888: 8021 elements scheduled.
13:44:54 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 1979 elements
13:44:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:54 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:54 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 1979 elements
13:44:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:54 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:55 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:55 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:55 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 22x22x5) for time after (2023-09-02 00:00:00)
13:44:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:55 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 847 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 847 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 847 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 847 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 847 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1402 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1402 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1402 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1402 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1402 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 797 elements, expanding data 1
13:44:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:55 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.93) and
                      after (2023-09-02 00:00:00, weight 0.07) in time
13:44:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05643937936967 and -58.96944308252476 degrees.
13:44:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05643937936967 and -58.96944308252476 degrees.
13:44:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:55 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:55 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:55 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.761551 (min) 1.25436 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13517 (min) 0.786839 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000137567 (min) 0.000565096 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.45803 (min) 6.08208 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.12848 (min) 5.40991 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.7444 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1527:               1979 active elements
13:44:55 DEBUG   opendrift.models.basemodel:1538:               59.10804794900064 <- latitude  -> 59.181180101178484
13:44:55 DEBUG   opendrift.models.basemodel:1543:               10.943571167497561 <- longitude -> 11.030567471949867
13:44:55 DEBUG   opendrift.models.basemodel:1548:               -13.528668403625488   <- z ->   0.0
13:44:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:55 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:55 DEBUG   opendrift.models.physics_methods:1049:    min: 0.080137, mean: 2.427715, max: 6.610447
13:44:55 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.080137, mean: 2.427715, max: 6.610447
13:44:55 DEBUG   opendrift.models.basemodel:813: 182 elements hit coastline, moving back to water
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:44:55 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:55 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:55 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 1979 elements above 0.100m with wind-sheared ocean current (0.022014 m/s - 0.104983 m/s)
13:44:55 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:55 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:55 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.054075040180521006
13:44:55 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:55 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:55 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:55 DEBUG   opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 144 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 113 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 107 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 12 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
13:44:55 DEBUG   opendrift.models.oceandrift:582: 108 elements penetrated seafloor, lifting up
13:44:55 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:55 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:55 DEBUG   opendrift.models.basemodel:2945: 1979 active elements (0 deactivated)
13:44:55 DEBUG   opendrift.models.basemodel:1658: to be seeded: 8021, already seeded 1979
13:44:55 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 2014 elements
13:44:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:55 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.668 (max)
13:44:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1527:               2014 active elements
13:44:55 DEBUG   opendrift.models.basemodel:1538:               59.10908141659252 <- latitude  -> 59.181423860398645
13:44:55 DEBUG   opendrift.models.basemodel:1543:               10.942840777214004 <- longitude -> 11.033680475932746
13:44:55 DEBUG   opendrift.models.basemodel:1548:               -13.53648505263817   <- z ->   0.0
13:44:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:836: Lifting 138 elements to seafloor.
13:44:55 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:55 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:13:54.338376 - step 58 of 216 - 2014 active elements (0 deactivated)
13:44:55 DEBUG   opendrift.models.basemodel:2888: 7986 elements scheduled.
13:44:55 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 2014 elements
13:44:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:55 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:55 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 2014 elements
13:44:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:56 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:56 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 00:00:00)
13:44:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:56 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 838 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
13:44:56 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.77) and
                      after (2023-09-02 00:00:00, weight 0.23) in time
13:44:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0571697764326 and -58.96633007734688 degrees.
13:44:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0571697764326 and -58.96633007734688 degrees.
13:44:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:56 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:56 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:56 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.793407 (min) 1.16055 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.97795 (min) 0.808768 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000119111 (min) 0.000353519 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.36115 (min) 5.65659 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.71013 (min) 6.15114 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.668 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1527:               2014 active elements
13:44:56 DEBUG   opendrift.models.basemodel:1538:               59.10908141659252 <- latitude  -> 59.181423860398645
13:44:56 DEBUG   opendrift.models.basemodel:1543:               10.942840777214004 <- longitude -> 11.033680475932746
13:44:56 DEBUG   opendrift.models.basemodel:1548:               -13.53648505263817   <- z ->   0.0
13:44:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:56 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:56 DEBUG   opendrift.models.physics_methods:1049:    min: 0.092384, mean: 2.426571, max: 7.236061
13:44:56 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.092384, mean: 2.426571, max: 7.236061
13:44:56 DEBUG   opendrift.models.basemodel:813: 197 elements hit coastline, moving back to water
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:44:56 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:56 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:56 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 2014 elements above 0.100m with wind-sheared ocean current (0.002128 m/s - 0.140164 m/s)
13:44:56 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:56 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:56 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0647939126253891
13:44:56 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:56 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:56 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:56 DEBUG   opendrift.models.oceandrift:582: 184 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 154 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 114 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 111 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 15 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 118 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:56 DEBUG   opendrift.models.oceandrift:582: 98 elements penetrated seafloor, lifting up
13:44:56 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:56 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:56 DEBUG   opendrift.models.basemodel:2945: 2014 active elements (0 deactivated)
13:44:56 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7986, already seeded 2014
13:44:56 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 2049 elements
13:44:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:56 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.8136 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1527:               2049 active elements
13:44:56 DEBUG   opendrift.models.basemodel:1538:               59.109125806722574 <- latitude  -> 59.183506748026986
13:44:56 DEBUG   opendrift.models.basemodel:1543:               10.939821028057883 <- longitude -> 11.032970294468932
13:44:56 DEBUG   opendrift.models.basemodel:1548:               -13.763847579956055   <- z ->   0.0
13:44:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:836: Lifting 148 elements to seafloor.
13:44:56 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:56 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:23:54.338376 - step 59 of 216 - 2049 active elements (0 deactivated)
13:44:56 DEBUG   opendrift.models.basemodel:2888: 7951 elements scheduled.
13:44:56 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 2049 elements
13:44:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 2049 elements
13:44:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:56 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:56 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
13:44:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:56 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1488 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1488 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1488 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1488 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1488 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 282 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 1
13:44:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:44:56 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.60) and
                      after (2023-09-02 00:00:00, weight 0.40) in time
13:44:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.060189532240344 and -58.967040260679596 degrees.
13:44:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.060189532240344 and -58.967040260679596 degrees.
13:44:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:56 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:56 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:56 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.670421 (min) 1.41537 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02637 (min) 0.823094 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.00013506 (min) 0.00048306 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.92996 (min) 5.80092 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.65752 (min) 5.68314 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.8136 (max)
13:44:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:56 DEBUG   opendrift.models.basemodel:1527:               2049 active elements
13:44:56 DEBUG   opendrift.models.basemodel:1538:               59.109125806722574 <- latitude  -> 59.183506748026986
13:44:56 DEBUG   opendrift.models.basemodel:1543:               10.939821028057883 <- longitude -> 11.032970294468932
13:44:56 DEBUG   opendrift.models.basemodel:1548:               -13.64486312866211   <- z ->   0.0
13:44:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:56 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:56 DEBUG   opendrift.models.physics_methods:1049:    min: 0.047440, mean: 2.381092, max: 7.538353
13:44:56 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.047440, mean: 2.381092, max: 7.538353
13:44:56 DEBUG   opendrift.models.basemodel:813: 201 elements hit coastline, moving back to water
13:44:56 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:56 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:56 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:57 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2049 elements above 0.100m with wind-sheared ocean current (0.001793 m/s - 0.129975 m/s)
13:44:57 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:57 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:57 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07032026494749069
13:44:57 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:57 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:57 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:57 DEBUG   opendrift.models.oceandrift:582: 180 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 142 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 101 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 102 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 104 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 114 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:57 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:57 DEBUG   opendrift.models.basemodel:2945: 2049 active elements (0 deactivated)
13:44:57 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7951, already seeded 2049
13:44:57 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 2084 elements
13:44:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:57 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9085 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1527:               2084 active elements
13:44:57 DEBUG   opendrift.models.basemodel:1538:               59.10699433365843 <- latitude  -> 59.18139642932846
13:44:57 DEBUG   opendrift.models.basemodel:1543:               10.94331984510639 <- longitude -> 11.029625294637215
13:44:57 DEBUG   opendrift.models.basemodel:1548:               -14.368812789916992   <- z ->   0.0
13:44:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 169 elements to seafloor.
13:44:57 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:57 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:33:54.338376 - step 60 of 216 - 2084 active elements (0 deactivated)
13:44:57 DEBUG   opendrift.models.basemodel:2888: 7916 elements scheduled.
13:44:57 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 2084 elements
13:44:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:57 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 2084 elements
13:44:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:57 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:57 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
13:44:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:57 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 929 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 929 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 929 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 929 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 929 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1525 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 885 elements, expanding data 1
13:44:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:57 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.43) and
                      after (2023-09-02 00:00:00, weight 0.57) in time
13:44:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05669070116637 and -58.970385270497516 degrees.
13:44:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05669070116637 and -58.970385270497516 degrees.
13:44:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:57 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:57 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:57 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.665888 (min) 1.38342 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.985942 (min) 0.837321 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000145994 (min) 0.000602767 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.30844 (min) 4.8515 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.23492 (min) 6.00426 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9085 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1527:               2084 active elements
13:44:57 DEBUG   opendrift.models.basemodel:1538:               59.10699433365843 <- latitude  -> 59.18139642932846
13:44:57 DEBUG   opendrift.models.basemodel:1543:               10.94331984510639 <- longitude -> 11.029625294637215
13:44:57 DEBUG   opendrift.models.basemodel:1548:               -14.368812789916992   <- z ->   0.0
13:44:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:57 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:57 DEBUG   opendrift.models.physics_methods:1049:    min: 0.090442, mean: 2.435489, max: 6.659547
13:44:57 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.090442, mean: 2.435489, max: 6.659547
13:44:57 DEBUG   opendrift.models.basemodel:813: 215 elements hit coastline, moving back to water
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:44:57 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:57 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:57 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 2084 elements above 0.100m with wind-sheared ocean current (0.001590 m/s - 0.114793 m/s)
13:44:57 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:57 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:57 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.054881246288137425
13:44:57 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:57 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:57 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:57 DEBUG   opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 172 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 153 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 143 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 137 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 126 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:57 DEBUG   opendrift.models.oceandrift:582: 132 elements penetrated seafloor, lifting up
13:44:57 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:44:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:44:57 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:57 DEBUG   opendrift.models.basemodel:2945: 2084 active elements (0 deactivated)
13:44:57 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7916, already seeded 2084
13:44:57 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:44:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 2118 elements
13:44:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:57 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9794 (max)
13:44:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1527:               2118 active elements
13:44:57 DEBUG   opendrift.models.basemodel:1538:               59.106682211968035 <- latitude  -> 59.18169302095325
13:44:57 DEBUG   opendrift.models.basemodel:1543:               10.942892018902475 <- longitude -> 11.033868733480032
13:44:57 DEBUG   opendrift.models.basemodel:1548:               -13.67681812286377   <- z ->   0.0
13:44:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:836: Lifting 144 elements to seafloor.
13:44:57 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:57 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:43:54.338376 - step 61 of 216 - 2118 active elements (0 deactivated)
13:44:57 DEBUG   opendrift.models.basemodel:2888: 7882 elements scheduled.
13:44:57 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 2118 elements
13:44:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:57 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:57 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 2118 elements
13:44:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:58 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:58 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
13:44:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:58 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 967 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 967 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 967 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 967 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 967 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1535 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1535 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1535 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1535 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1535 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
13:44:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:44:58 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.27) and
                      after (2023-09-02 00:00:00, weight 0.73) in time
13:44:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0571185428866 and -58.966141824738926 degrees.
13:44:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0571185428866 and -58.966141824738926 degrees.
13:44:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:58 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:58 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:58 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.735379 (min) 1.24443 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.925532 (min) 0.756129 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000122824 (min) 0.000463973 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.7016 (min) 5.90716 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.3648 (min) 5.91447 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9794 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1527:               2118 active elements
13:44:58 DEBUG   opendrift.models.basemodel:1538:               59.106682211968035 <- latitude  -> 59.18169302095325
13:44:58 DEBUG   opendrift.models.basemodel:1543:               10.942892018902475 <- longitude -> 11.033868733480032
13:44:58 DEBUG   opendrift.models.basemodel:1548:               -13.67681812286377   <- z ->   0.0
13:44:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:58 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:58 DEBUG   opendrift.models.physics_methods:1049:    min: 0.088647, mean: 2.384283, max: 7.353166
13:44:58 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.088647, mean: 2.384283, max: 7.353166
13:44:58 DEBUG   opendrift.models.basemodel:813: 221 elements hit coastline, moving back to water
13:44:58 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:44:58 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:58 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:58 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2118 elements above 0.100m with wind-sheared ocean current (0.004495 m/s - 0.128509 m/s)
13:44:58 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:58 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:58 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06690791839058875
13:44:58 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:58 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:58 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:58 DEBUG   opendrift.models.oceandrift:582: 205 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 135 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 157 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 99 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 115 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:58 DEBUG   opendrift.models.oceandrift:582: 109 elements penetrated seafloor, lifting up
13:44:58 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:58 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:58 DEBUG   opendrift.models.basemodel:2945: 2118 active elements (0 deactivated)
13:44:58 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7882, already seeded 2118
13:44:58 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 2153 elements
13:44:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:58 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1221 (max)
13:44:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1527:               2153 active elements
13:44:58 DEBUG   opendrift.models.basemodel:1538:               59.10556728572868 <- latitude  -> 59.181037850918
13:44:58 DEBUG   opendrift.models.basemodel:1543:               10.941241434105356 <- longitude -> 11.030954134251964
13:44:58 DEBUG   opendrift.models.basemodel:1548:               -14.053387983158432   <- z ->   0.0
13:44:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:836: Lifting 179 elements to seafloor.
13:44:58 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:58 INFO    opendrift.models.basemodel:2882: 2023-09-01 23:53:54.338376 - step 62 of 216 - 2153 active elements (0 deactivated)
13:44:58 DEBUG   opendrift.models.basemodel:2888: 7847 elements scheduled.
13:44:58 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 2153 elements
13:44:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:58 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:58 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 2153 elements
13:44:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-01 23:00:00 (before)
                2023-09-02 00:00:00 (after)
13:44:59 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:44:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:44:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:44:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:44:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:44:59 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:59 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 00:00:00)
13:44:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-01 23:00:00) in space  (linearNDFast)
13:44:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:59 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1003 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1003 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1003 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1003 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1003 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1585 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1585 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1585 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1585 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1585 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 347 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 953 elements, expanding data 1
13:44:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:44:59 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-01 23:00:00, weight 0.10) and
                      after (2023-09-02 00:00:00, weight 0.90) in time
13:44:59 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.058769108568434 and -58.96905641958604 degrees.
13:44:59 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.058769108568434 and -58.96905641958604 degrees.
13:44:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:59 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:59 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:44:59 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:44:59 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:59 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.744064 (min) 1.25249 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.12212 (min) 0.793306 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.40168e-05 (min) 0.000450288 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.57273 (min) 5.78954 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.93723 (min) 6.74353 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1221 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1527:               2153 active elements
13:44:59 DEBUG   opendrift.models.basemodel:1538:               59.10556728572868 <- latitude  -> 59.181037850918
13:44:59 DEBUG   opendrift.models.basemodel:1543:               10.941241434105356 <- longitude -> 11.030954134251964
13:44:59 DEBUG   opendrift.models.basemodel:1548:               -14.053387983158432   <- z ->   0.0
13:44:59 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:59 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:44:59 DEBUG   opendrift.models.physics_methods:1049:    min: 0.070667, mean: 2.438513, max: 7.788708
13:44:59 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.070667, mean: 2.438513, max: 7.788708
13:44:59 DEBUG   opendrift.models.basemodel:813: 234 elements hit coastline, moving back to water
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:44:59 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:44:59 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:44:59 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2153 elements above 0.100m with wind-sheared ocean current (0.012814 m/s - 0.109374 m/s)
13:44:59 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:44:59 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:44:59 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0750683331337738
13:44:59 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:44:59 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:44:59 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:44:59 DEBUG   opendrift.models.oceandrift:582: 214 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 169 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 122 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 110 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:44:59 DEBUG   opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
13:44:59 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:44:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:44:59 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:44:59 DEBUG   opendrift.models.basemodel:2945: 2153 active elements (0 deactivated)
13:44:59 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7847, already seeded 2153
13:44:59 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:44:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:44:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 2188 elements
13:44:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:59 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:44:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:44:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:44:59 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:44:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:59 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:44:59 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:44:59 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1368 (max)
13:44:59 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1527:               2188 active elements
13:44:59 DEBUG   opendrift.models.basemodel:1538:               59.10659014990945 <- latitude  -> 59.18120611158872
13:44:59 DEBUG   opendrift.models.basemodel:1543:               10.94267707649749 <- longitude -> 11.030920108856739
13:44:59 DEBUG   opendrift.models.basemodel:1548:               -13.736421813964844   <- z ->   0.0
13:44:59 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:836: Lifting 170 elements to seafloor.
13:44:59 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:44:59 INFO    opendrift.models.basemodel:2882: 2023-09-02 00:03:54.338376 - step 63 of 216 - 2188 active elements (0 deactivated)
13:44:59 DEBUG   opendrift.models.basemodel:2888: 7812 elements scheduled.
13:44:59 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:44:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:44:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:44:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 2188 elements
13:44:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:44:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:44:59 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:44:59 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:44:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:44:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:44:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:44:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 2188 elements
13:44:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:44:59 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:00 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:00 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:00 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x23x5) for time after (2023-09-02 01:00:00)
13:45:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:00 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 371 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 371 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 371 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 371 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 371 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 1
13:45:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:00 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.93) and
                      after (2023-09-02 01:00:00, weight 0.07) in time
13:45:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05733348375524 and -58.96909044610592 degrees.
13:45:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05733348375524 and -58.96909044610592 degrees.
13:45:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:00 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:00 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:00 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.687453 (min) 1.15977 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.977783 (min) 0.719673 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000104364 (min) 0.000604201 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.74117 (min) 5.72271 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.54546 (min) 5.18906 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1368 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1527:               2188 active elements
13:45:00 DEBUG   opendrift.models.basemodel:1538:               59.10659014990945 <- latitude  -> 59.18120611158872
13:45:00 DEBUG   opendrift.models.basemodel:1543:               10.94267707649749 <- longitude -> 11.030920108856739
13:45:00 DEBUG   opendrift.models.basemodel:1548:               -13.736421813964844   <- z ->   0.0
13:45:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:00 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:00 DEBUG   opendrift.models.physics_methods:1049:    min: 0.034768, mean: 2.373167, max: 8.055981
13:45:00 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.034768, mean: 2.373167, max: 8.055981
13:45:00 DEBUG   opendrift.models.basemodel:813: 239 elements hit coastline, moving back to water
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:45:00 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:00 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:00 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 2188 elements above 0.100m with wind-sheared ocean current (0.013389 m/s - 0.106886 m/s)
13:45:00 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:00 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:00 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08030846538265228
13:45:00 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:00 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:00 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:00 DEBUG   opendrift.models.oceandrift:582: 209 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 144 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 160 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 112 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:00 DEBUG   opendrift.models.oceandrift:582: 100 elements penetrated seafloor, lifting up
13:45:00 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:00 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:00 DEBUG   opendrift.models.basemodel:2945: 2188 active elements (0 deactivated)
13:45:00 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7812, already seeded 2188
13:45:00 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 2223 elements
13:45:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:00 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1606 (max)
13:45:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1527:               2223 active elements
13:45:00 DEBUG   opendrift.models.basemodel:1538:               59.10436690686437 <- latitude  -> 59.1816745726478
13:45:00 DEBUG   opendrift.models.basemodel:1543:               10.943777250752538 <- longitude -> 11.029686505245635
13:45:00 DEBUG   opendrift.models.basemodel:1548:               -13.656950349317697   <- z ->   0.0
13:45:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:836: Lifting 189 elements to seafloor.
13:45:00 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:00 INFO    opendrift.models.basemodel:2882: 2023-09-02 00:13:54.338376 - step 64 of 216 - 2223 active elements (0 deactivated)
13:45:00 DEBUG   opendrift.models.basemodel:2888: 7777 elements scheduled.
13:45:00 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 2223 elements
13:45:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:00 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:00 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 2223 elements
13:45:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:01 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:01 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:01 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 01:00:00)
13:45:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:01 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1054 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1054 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1054 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1054 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1054 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1650 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 377 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1650 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 377 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1650 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 377 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1650 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 377 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1650 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 377 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
13:45:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:01 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.77) and
                      after (2023-09-02 01:00:00, weight 0.23) in time
13:45:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056233305845794 and -58.97032405556544 degrees.
13:45:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056233305845794 and -58.97032405556544 degrees.
13:45:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:01 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:01 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:01 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.771721 (min) 1.15773 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00769 (min) 0.741719 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.49454e-05 (min) 0.00061276 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.67627 (min) 5.45961 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.27872 (min) 6.93195 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1606 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1527:               2223 active elements
13:45:01 DEBUG   opendrift.models.basemodel:1538:               59.10436690686437 <- latitude  -> 59.1816745726478
13:45:01 DEBUG   opendrift.models.basemodel:1543:               10.943777250752538 <- longitude -> 11.029686505245635
13:45:01 DEBUG   opendrift.models.basemodel:1548:               -13.656950349317697   <- z ->   0.0
13:45:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:01 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:01 DEBUG   opendrift.models.physics_methods:1049:    min: 0.038478, mean: 2.377351, max: 8.009567
13:45:01 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.038478, mean: 2.377351, max: 8.009567
13:45:01 DEBUG   opendrift.models.basemodel:813: 225 elements hit coastline, moving back to water
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:01 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:01 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:01 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 2223 elements above 0.100m with wind-sheared ocean current (0.003858 m/s - 0.187474 m/s)
13:45:01 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:01 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:01 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07938578678186416
13:45:01 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:01 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:01 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:01 DEBUG   opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 178 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 143 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 129 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:45:01 DEBUG   opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
13:45:01 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:01 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:01 DEBUG   opendrift.models.basemodel:2945: 2223 active elements (0 deactivated)
13:45:01 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7777, already seeded 2223
13:45:01 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 2257 elements
13:45:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:01 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0736 (max)
13:45:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1527:               2257 active elements
13:45:01 DEBUG   opendrift.models.basemodel:1538:               59.1044672022672 <- latitude  -> 59.182258015308875
13:45:01 DEBUG   opendrift.models.basemodel:1543:               10.942167313096144 <- longitude -> 11.031275068363417
13:45:01 DEBUG   opendrift.models.basemodel:1548:               -14.038604325976895   <- z ->   0.0
13:45:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:836: Lifting 151 elements to seafloor.
13:45:01 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:01 INFO    opendrift.models.basemodel:2882: 2023-09-02 00:23:54.338376 - step 65 of 216 - 2257 active elements (0 deactivated)
13:45:01 DEBUG   opendrift.models.basemodel:2888: 7743 elements scheduled.
13:45:01 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 2257 elements
13:45:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:01 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:01 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 2257 elements
13:45:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:02 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:02 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 01:00:00)
13:45:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:02 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1060 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 397 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1011 elements, expanding data 1
13:45:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:02 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.60) and
                      after (2023-09-02 01:00:00, weight 0.40) in time
13:45:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05784324512111 and -58.96873549205942 degrees.
13:45:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05784324512111 and -58.96873549205942 degrees.
13:45:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:02 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:02 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:02 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.753093 (min) 1.06079 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.949322 (min) 0.833083 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.38665e-05 (min) 0.000550832 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.46617 (min) 5.56996 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.0123 (min) 6.16001 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0736 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1527:               2257 active elements
13:45:02 DEBUG   opendrift.models.basemodel:1538:               59.1044672022672 <- latitude  -> 59.182258015308875
13:45:02 DEBUG   opendrift.models.basemodel:1543:               10.942167313096144 <- longitude -> 11.031275068363417
13:45:02 DEBUG   opendrift.models.basemodel:1548:               -14.038604325976895   <- z ->   0.0
13:45:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:02 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:02 DEBUG   opendrift.models.physics_methods:1049:    min: 0.050963, mean: 2.373184, max: 8.746042
13:45:02 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.050963, mean: 2.373184, max: 8.746042
13:45:02 DEBUG   opendrift.models.basemodel:813: 234 elements hit coastline, moving back to water
13:45:02 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:02 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:02 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:02 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2257 elements above 0.100m with wind-sheared ocean current (0.009196 m/s - 0.117034 m/s)
13:45:02 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:02 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:02 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09465513289649963
13:45:02 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:02 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:02 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:02 DEBUG   opendrift.models.oceandrift:582: 233 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 167 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 155 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 140 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 156 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 125 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:02 DEBUG   opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
13:45:02 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:02 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:02 DEBUG   opendrift.models.basemodel:2945: 2257 active elements (0 deactivated)
13:45:02 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7743, already seeded 2257
13:45:02 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 2292 elements
13:45:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:02 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0171 (max)
13:45:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1527:               2292 active elements
13:45:02 DEBUG   opendrift.models.basemodel:1538:               59.103660052578576 <- latitude  -> 59.18288485575923
13:45:02 DEBUG   opendrift.models.basemodel:1543:               10.942631949076588 <- longitude -> 11.034703530735541
13:45:02 DEBUG   opendrift.models.basemodel:1548:               -13.220029955776896   <- z ->   0.0
13:45:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:836: Lifting 186 elements to seafloor.
13:45:02 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:02 INFO    opendrift.models.basemodel:2882: 2023-09-02 00:33:54.338376 - step 66 of 216 - 2292 active elements (0 deactivated)
13:45:02 DEBUG   opendrift.models.basemodel:2888: 7708 elements scheduled.
13:45:02 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 2292 elements
13:45:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:02 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:02 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 2292 elements
13:45:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:03 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:03 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 23x22x5) for time after (2023-09-02 01:00:00)
13:45:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:03 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1084 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1084 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1084 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1084 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1084 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1706 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1706 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1706 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1706 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1706 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1036 elements, expanding data 1
13:45:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
13:45:03 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.43) and
                      after (2023-09-02 01:00:00, weight 0.57) in time
13:45:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057378614958175 and -58.96530702535579 degrees.
13:45:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057378614958175 and -58.96530702535579 degrees.
13:45:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:03 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:03 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:03 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.721508 (min) 1.28723 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.12483 (min) 0.912632 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.10502e-05 (min) 0.0006246 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.05333 (min) 6.78814 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.89085 (min) 5.2699 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0171 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1527:               2292 active elements
13:45:03 DEBUG   opendrift.models.basemodel:1538:               59.103660052578576 <- latitude  -> 59.18288485575923
13:45:03 DEBUG   opendrift.models.basemodel:1543:               10.942631949076588 <- longitude -> 11.034703530735541
13:45:03 DEBUG   opendrift.models.basemodel:1548:               -13.21348976135254   <- z ->   0.0
13:45:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:03 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:03 DEBUG   opendrift.models.physics_methods:1049:    min: 0.019924, mean: 2.370321, max: 8.687549
13:45:03 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.019924, mean: 2.370321, max: 8.687549
13:45:03 DEBUG   opendrift.models.basemodel:813: 262 elements hit coastline, moving back to water
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:45:03 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:03 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:03 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 2292 elements above 0.100m with wind-sheared ocean current (0.001948 m/s - 0.126258 m/s)
13:45:03 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:03 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:03 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09339332989843369
13:45:03 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:03 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:03 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:03 DEBUG   opendrift.models.oceandrift:582: 234 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 152 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 116 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 128 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:03 DEBUG   opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
13:45:03 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:45:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:45:03 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:03 DEBUG   opendrift.models.basemodel:2945: 2292 active elements (0 deactivated)
13:45:03 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7708, already seeded 2292
13:45:03 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 2327 elements
13:45:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:03 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0389 (max)
13:45:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1527:               2327 active elements
13:45:03 DEBUG   opendrift.models.basemodel:1538:               59.10299497932218 <- latitude  -> 59.18398733713236
13:45:03 DEBUG   opendrift.models.basemodel:1543:               10.943638309556759 <- longitude -> 11.034040581577559
13:45:03 DEBUG   opendrift.models.basemodel:1548:               -13.832039673523308   <- z ->   0.0
13:45:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:836: Lifting 190 elements to seafloor.
13:45:03 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:03 INFO    opendrift.models.basemodel:2882: 2023-09-02 00:43:54.338376 - step 67 of 216 - 2327 active elements (0 deactivated)
13:45:03 DEBUG   opendrift.models.basemodel:2888: 7673 elements scheduled.
13:45:03 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 2327 elements
13:45:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:03 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:03 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 2327 elements
13:45:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:04 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:04 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x22x5) for time after (2023-09-02 01:00:00)
13:45:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:04 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 432 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 432 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 432 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 432 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 432 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1076 elements, expanding data 1
13:45:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:04 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.27) and
                      after (2023-09-02 01:00:00, weight 0.73) in time
13:45:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05637223729217 and -58.96596997708875 degrees.
13:45:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05637223729217 and -58.96596997708875 degrees.
13:45:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:04 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:04 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:04 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.697336 (min) 1.23228 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00626 (min) 0.73653 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.06642e-05 (min) 0.000584913 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.86133 (min) 7.4499 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.7926 (min) 4.95778 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0389 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1527:               2327 active elements
13:45:04 DEBUG   opendrift.models.basemodel:1538:               59.10299497932218 <- latitude  -> 59.18398733713236
13:45:04 DEBUG   opendrift.models.basemodel:1543:               10.943638309556759 <- longitude -> 11.034040581577559
13:45:04 DEBUG   opendrift.models.basemodel:1548:               -13.5772066116333   <- z ->   0.0
13:45:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:04 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:04 DEBUG   opendrift.models.physics_methods:1049:    min: 0.097484, mean: 2.397921, max: 6.858591
13:45:04 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.097484, mean: 2.397921, max: 6.858591
13:45:04 DEBUG   opendrift.models.basemodel:813: 271 elements hit coastline, moving back to water
13:45:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:04 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:04 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:04 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 2327 elements above 0.100m with wind-sheared ocean current (0.000493 m/s - 0.127419 m/s)
13:45:04 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:04 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:04 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.058210665559844964
13:45:04 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:04 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:04 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:04 DEBUG   opendrift.models.oceandrift:582: 232 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 171 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 166 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 157 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 163 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 96 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:04 DEBUG   opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
13:45:04 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:45:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:45:04 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:04 DEBUG   opendrift.models.basemodel:2945: 2327 active elements (0 deactivated)
13:45:04 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7673, already seeded 2327
13:45:04 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 2361 elements
13:45:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:04 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0985 (max)
13:45:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1527:               2361 active elements
13:45:04 DEBUG   opendrift.models.basemodel:1538:               59.10384390692203 <- latitude  -> 59.18299358001383
13:45:04 DEBUG   opendrift.models.basemodel:1543:               10.942732142439889 <- longitude -> 11.034040581577559
13:45:04 DEBUG   opendrift.models.basemodel:1548:               -13.567206611633301   <- z ->   0.0
13:45:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:836: Lifting 192 elements to seafloor.
13:45:04 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:04 INFO    opendrift.models.basemodel:2882: 2023-09-02 00:53:54.338376 - step 68 of 216 - 2361 active elements (0 deactivated)
13:45:04 DEBUG   opendrift.models.basemodel:2888: 7639 elements scheduled.
13:45:04 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 2361 elements
13:45:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:04 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:04 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 2361 elements
13:45:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 00:00:00 (before)
                2023-09-02 01:00:00 (after)
13:45:05 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:05 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:05 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x22x5) for time after (2023-09-02 01:00:00)
13:45:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 00:00:00) in space  (linearNDFast)
13:45:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:05 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1175 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1175 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1175 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1175 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1175 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1128 elements, expanding data 1
13:45:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:05 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 00:00:00, weight 0.10) and
                      after (2023-09-02 01:00:00, weight 0.90) in time
13:45:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05727841910964 and -58.96596997708875 degrees.
13:45:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05727841910964 and -58.96596997708875 degrees.
13:45:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:05 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:05 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:05 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.660928 (min) 1.13023 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.15168 (min) 0.732374 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -1.95286e-05 (min) 0.000652215 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.53229 (min) 6.24054 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.35259 (min) 5.80305 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0985 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1527:               2361 active elements
13:45:05 DEBUG   opendrift.models.basemodel:1538:               59.10384390692203 <- latitude  -> 59.18299358001383
13:45:05 DEBUG   opendrift.models.basemodel:1543:               10.942732142439889 <- longitude -> 11.034040581577559
13:45:05 DEBUG   opendrift.models.basemodel:1548:               -13.470008125305176   <- z ->   0.0
13:45:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:05 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:05 DEBUG   opendrift.models.physics_methods:1049:    min: 0.019456, mean: 2.395745, max: 7.367210
13:45:05 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.019456, mean: 2.395745, max: 7.367210
13:45:05 DEBUG   opendrift.models.basemodel:813: 261 elements hit coastline, moving back to water
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:05 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:05 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:05 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2361 elements above 0.100m with wind-sheared ocean current (0.010024 m/s - 0.149843 m/s)
13:45:05 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:05 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:05 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06716374473984718
13:45:05 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:05 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:05 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:05 DEBUG   opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 168 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 153 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 140 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 121 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:05 DEBUG   opendrift.models.oceandrift:582: 140 elements penetrated seafloor, lifting up
13:45:05 DEBUG   opendrift.models.oceandrift:600: 14 elements reached seafloor, set to bottom
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:45:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
13:45:05 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:05 DEBUG   opendrift.models.basemodel:2945: 2361 active elements (0 deactivated)
13:45:05 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7639, already seeded 2361
13:45:05 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 2396 elements
13:45:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:05 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1812 (max)
13:45:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1527:               2396 active elements
13:45:05 DEBUG   opendrift.models.basemodel:1538:               59.10100747932721 <- latitude  -> 59.18288316685341
13:45:05 DEBUG   opendrift.models.basemodel:1543:               10.94066314234915 <- longitude -> 11.032587601333232
13:45:05 DEBUG   opendrift.models.basemodel:1548:               -13.428428649902344   <- z ->   0.0
13:45:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:836: Lifting 209 elements to seafloor.
13:45:05 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:05 INFO    opendrift.models.basemodel:2882: 2023-09-02 01:03:54.338376 - step 69 of 216 - 2396 active elements (0 deactivated)
13:45:05 DEBUG   opendrift.models.basemodel:2888: 7604 elements scheduled.
13:45:05 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 2396 elements
13:45:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:05 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:05 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 2396 elements
13:45:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:06 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x22x5) for time after (2023-09-02 02:00:00)
13:45:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:06 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1778 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1778 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1778 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1778 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1778 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1139 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:06 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.93) and
                      after (2023-09-02 02:00:00, weight 0.07) in time
13:45:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05934741771449 and -58.96742295166399 degrees.
13:45:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05934741771449 and -58.96742295166399 degrees.
13:45:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:06 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:06 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:06 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.84998 (min) 1.22113 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02786 (min) 0.791353 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.53999e-05 (min) 0.000703616 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.86492 (min) 6.13979 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.48139 (min) 6.59657 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1812 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1527:               2396 active elements
13:45:06 DEBUG   opendrift.models.basemodel:1538:               59.10100747932721 <- latitude  -> 59.18288316685341
13:45:06 DEBUG   opendrift.models.basemodel:1543:               10.94066314234915 <- longitude -> 11.032587601333232
13:45:06 DEBUG   opendrift.models.basemodel:1548:               -13.423873901367188   <- z ->   0.0
13:45:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:06 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:06 DEBUG   opendrift.models.physics_methods:1049:    min: 0.018351, mean: 2.403780, max: 7.728896
13:45:06 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.018351, mean: 2.403780, max: 7.728896
13:45:06 DEBUG   opendrift.models.basemodel:813: 268 elements hit coastline, moving back to water
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:45:06 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:06 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:06 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 2396 elements above 0.100m with wind-sheared ocean current (0.003083 m/s - 0.109301 m/s)
13:45:06 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:06 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:06 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0739198952832985
13:45:06 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:06 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:06 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:06 DEBUG   opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 170 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 152 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 153 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 148 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 157 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 133 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 127 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:06 DEBUG   opendrift.models.oceandrift:582: 136 elements penetrated seafloor, lifting up
13:45:06 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:06 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:06 DEBUG   opendrift.models.basemodel:2945: 2396 active elements (0 deactivated)
13:45:06 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7604, already seeded 2396
13:45:06 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 2431 elements
13:45:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:06 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1293 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1527:               2431 active elements
13:45:06 DEBUG   opendrift.models.basemodel:1538:               59.10090951170602 <- latitude  -> 59.18320624694559
13:45:06 DEBUG   opendrift.models.basemodel:1543:               10.944379082146673 <- longitude -> 11.028638017090092
13:45:06 DEBUG   opendrift.models.basemodel:1548:               -13.423873901367188   <- z ->   0.0
13:45:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:836: Lifting 226 elements to seafloor.
13:45:06 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:06 INFO    opendrift.models.basemodel:2882: 2023-09-02 01:13:54.338376 - step 70 of 216 - 2431 active elements (0 deactivated)
13:45:06 DEBUG   opendrift.models.basemodel:2888: 7569 elements scheduled.
13:45:06 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 2431 elements
13:45:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 2431 elements
13:45:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:06 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x5) for time after (2023-09-02 02:00:00)
13:45:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:06 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1211 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1800 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 519 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1800 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 519 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1800 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 519 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1800 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 519 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1800 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 519 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1162 elements, expanding data 1
13:45:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:06 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.77) and
                      after (2023-09-02 02:00:00, weight 0.23) in time
13:45:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055631484288895 and -58.97137254823973 degrees.
13:45:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.055631484288895 and -58.97137254823973 degrees.
13:45:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:06 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:06 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:06 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.816481 (min) 1.12732 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.1478 (min) 0.788241 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000227901 (min) 0.000585784 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.23055 (min) 6.25751 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.69057 (min) 6.67627 (max)
13:45:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1293 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1527:               2431 active elements
13:45:07 DEBUG   opendrift.models.basemodel:1538:               59.10090951170602 <- latitude  -> 59.18320624694559
13:45:07 DEBUG   opendrift.models.basemodel:1543:               10.944379082146673 <- longitude -> 11.028638017090092
13:45:07 DEBUG   opendrift.models.basemodel:1548:               -13.423873901367188   <- z ->   0.0
13:45:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:07 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:07 DEBUG   opendrift.models.physics_methods:1049:    min: 0.068628, mean: 2.440838, max: 8.382908
13:45:07 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.068628, mean: 2.440838, max: 8.382908
13:45:07 DEBUG   opendrift.models.basemodel:813: 311 elements hit coastline, moving back to water
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:07 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:07 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:07 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 2431 elements above 0.100m with wind-sheared ocean current (0.010952 m/s - 0.109856 m/s)
13:45:07 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:07 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:07 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08695851155050277
13:45:07 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:07 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:07 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:07 DEBUG   opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 172 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 158 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 145 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 131 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 134 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 144 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:07 DEBUG   opendrift.models.basemodel:2945: 2431 active elements (0 deactivated)
13:45:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7569, already seeded 2431
13:45:07 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 2466 elements
13:45:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:07 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1523 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1527:               2466 active elements
13:45:07 DEBUG   opendrift.models.basemodel:1538:               59.10154420197476 <- latitude  -> 59.18396078085451
13:45:07 DEBUG   opendrift.models.basemodel:1543:               10.942970654419343 <- longitude -> 11.02758189938522
13:45:07 DEBUG   opendrift.models.basemodel:1548:               -13.577035488068253   <- z ->   0.0
13:45:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 209 elements to seafloor.
13:45:07 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:07 INFO    opendrift.models.basemodel:2882: 2023-09-02 01:23:54.338376 - step 71 of 216 - 2466 active elements (0 deactivated)
13:45:07 DEBUG   opendrift.models.basemodel:2888: 7534 elements scheduled.
13:45:07 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 2466 elements
13:45:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:07 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 2466 elements
13:45:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:07 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x24x5) for time after (2023-09-02 02:00:00)
13:45:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:07 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1239 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1239 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1239 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1239 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1239 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1840 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1840 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1840 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1840 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1840 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1194 elements, expanding data 1
13:45:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:07 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.60) and
                      after (2023-09-02 02:00:00, weight 0.40) in time
13:45:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05703990035908 and -58.972428659917746 degrees.
13:45:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05703990035908 and -58.972428659917746 degrees.
13:45:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:07 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:07 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:07 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.792315 (min) 1.19353 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05368 (min) 0.837553 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000205155 (min) 0.000703289 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.6661 (min) 6.82018 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.94919 (min) 4.7748 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1523 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1527:               2466 active elements
13:45:07 DEBUG   opendrift.models.basemodel:1538:               59.10154420197476 <- latitude  -> 59.18396078085451
13:45:07 DEBUG   opendrift.models.basemodel:1543:               10.942970654419343 <- longitude -> 11.02758189938522
13:45:07 DEBUG   opendrift.models.basemodel:1548:               -13.577035488068253   <- z ->   0.0
13:45:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:07 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:07 DEBUG   opendrift.models.physics_methods:1049:    min: 0.057786, mean: 2.566391, max: 8.655258
13:45:07 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.057786, mean: 2.566391, max: 8.655258
13:45:07 DEBUG   opendrift.models.basemodel:813: 323 elements hit coastline, moving back to water
13:45:07 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:07 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:07 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:07 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 2466 elements above 0.100m with wind-sheared ocean current (0.007143 m/s - 0.114855 m/s)
13:45:07 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:07 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:07 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09270039183385849
13:45:07 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:07 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:07 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:07 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 192 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 150 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 169 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 139 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 148 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:07 DEBUG   opendrift.models.oceandrift:582: 120 elements penetrated seafloor, lifting up
13:45:07 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:07 DEBUG   opendrift.models.basemodel:2945: 2466 active elements (0 deactivated)
13:45:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7534, already seeded 2466
13:45:07 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 2500 elements
13:45:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:07 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1004 (max)
13:45:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1527:               2500 active elements
13:45:07 DEBUG   opendrift.models.basemodel:1538:               59.10222673637297 <- latitude  -> 59.183198507503256
13:45:07 DEBUG   opendrift.models.basemodel:1543:               10.94233745949505 <- longitude -> 11.025942519135564
13:45:07 DEBUG   opendrift.models.basemodel:1548:               -13.897595406298851   <- z ->   0.0
13:45:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:836: Lifting 218 elements to seafloor.
13:45:07 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:07 INFO    opendrift.models.basemodel:2882: 2023-09-02 01:33:54.338376 - step 72 of 216 - 2500 active elements (0 deactivated)
13:45:07 DEBUG   opendrift.models.basemodel:2888: 7500 elements scheduled.
13:45:07 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 2500 elements
13:45:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:07 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:07 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 2500 elements
13:45:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:08 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:08 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x5) for time after (2023-09-02 02:00:00)
13:45:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:08 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1269 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1869 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1869 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1869 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1869 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1869 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1225 elements, expanding data 1
13:45:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:08 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.43) and
                      after (2023-09-02 02:00:00, weight 0.57) in time
13:45:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05767310041123 and -58.97406802555586 degrees.
13:45:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05767310041123 and -58.97406802555586 degrees.
13:45:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:08 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:08 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:08 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.718185 (min) 1.1691 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05631 (min) 0.880478 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.70336e-05 (min) 0.000628252 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.72293 (min) 6.46872 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.41847 (min) 5.201 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1004 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1527:               2500 active elements
13:45:08 DEBUG   opendrift.models.basemodel:1538:               59.10222673637297 <- latitude  -> 59.183198507503256
13:45:08 DEBUG   opendrift.models.basemodel:1543:               10.94233745949505 <- longitude -> 11.025942519135564
13:45:08 DEBUG   opendrift.models.basemodel:1548:               -13.897595406298851   <- z ->   0.0
13:45:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:08 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:08 DEBUG   opendrift.models.physics_methods:1049:    min: 0.059996, mean: 2.609365, max: 8.277846
13:45:08 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.059996, mean: 2.609365, max: 8.277846
13:45:08 DEBUG   opendrift.models.basemodel:813: 321 elements hit coastline, moving back to water
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:45:08 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:08 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:08 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2500 elements above 0.100m with wind-sheared ocean current (0.007488 m/s - 0.101845 m/s)
13:45:08 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:08 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:08 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08479260340364456
13:45:08 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:08 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:08 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:08 DEBUG   opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 210 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 187 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 164 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 155 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 148 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:08 DEBUG   opendrift.models.oceandrift:582: 130 elements penetrated seafloor, lifting up
13:45:08 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:08 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:08 DEBUG   opendrift.models.basemodel:2945: 2500 active elements (0 deactivated)
13:45:08 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7500, already seeded 2500
13:45:08 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 2535 elements
13:45:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:08 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1556 (max)
13:45:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1527:               2535 active elements
13:45:08 DEBUG   opendrift.models.basemodel:1538:               59.10156790609956 <- latitude  -> 59.18369314000686
13:45:08 DEBUG   opendrift.models.basemodel:1543:               10.942717483404783 <- longitude -> 11.028321801008564
13:45:08 DEBUG   opendrift.models.basemodel:1548:               -13.954816093444824   <- z ->   0.0
13:45:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:836: Lifting 229 elements to seafloor.
13:45:08 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:08 INFO    opendrift.models.basemodel:2882: 2023-09-02 01:43:54.338376 - step 73 of 216 - 2535 active elements (0 deactivated)
13:45:08 DEBUG   opendrift.models.basemodel:2888: 7465 elements scheduled.
13:45:08 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 2535 elements
13:45:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:08 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:08 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 2535 elements
13:45:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:09 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:09 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:09 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x24x5) for time after (2023-09-02 02:00:00)
13:45:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:09 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1900 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 570 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 1
13:45:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:09 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.27) and
                      after (2023-09-02 02:00:00, weight 0.73) in time
13:45:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05729306182053 and -58.971688768550436 degrees.
13:45:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05729306182053 and -58.971688768550436 degrees.
13:45:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:09 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:09 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:09 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.772017 (min) 1.20024 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.928417 (min) 0.848534 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.76819e-05 (min) 0.000699473 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.95695 (min) 6.05628 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.25675 (min) 4.86313 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1556 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1527:               2535 active elements
13:45:09 DEBUG   opendrift.models.basemodel:1538:               59.10156790609956 <- latitude  -> 59.18369314000686
13:45:09 DEBUG   opendrift.models.basemodel:1543:               10.942717483404783 <- longitude -> 11.028321801008564
13:45:09 DEBUG   opendrift.models.basemodel:1548:               -13.954816093444824   <- z ->   0.0
13:45:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:09 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:09 DEBUG   opendrift.models.physics_methods:1049:    min: 0.046398, mean: 2.703652, max: 8.118976
13:45:09 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.046398, mean: 2.703652, max: 8.118976
13:45:09 DEBUG   opendrift.models.basemodel:813: 320 elements hit coastline, moving back to water
13:45:09 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:09 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:09 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:09 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 2535 elements above 0.100m with wind-sheared ocean current (0.003559 m/s - 0.165283 m/s)
13:45:09 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:09 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:09 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08156927085216521
13:45:09 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:09 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:09 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:09 DEBUG   opendrift.models.oceandrift:582: 283 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 178 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 148 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 141 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:09 DEBUG   opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
13:45:09 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:09 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:09 DEBUG   opendrift.models.basemodel:2945: 2535 active elements (0 deactivated)
13:45:09 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7465, already seeded 2535
13:45:09 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 2570 elements
13:45:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:09 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0891 (max)
13:45:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1527:               2570 active elements
13:45:09 DEBUG   opendrift.models.basemodel:1538:               59.10080047414852 <- latitude  -> 59.18369314000686
13:45:09 DEBUG   opendrift.models.basemodel:1543:               10.939203599015013 <- longitude -> 11.026879351657112
13:45:09 DEBUG   opendrift.models.basemodel:1548:               -14.185067405700684   <- z ->   0.0
13:45:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:836: Lifting 197 elements to seafloor.
13:45:09 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:09 INFO    opendrift.models.basemodel:2882: 2023-09-02 01:53:54.338376 - step 74 of 216 - 2570 active elements (0 deactivated)
13:45:09 DEBUG   opendrift.models.basemodel:2888: 7430 elements scheduled.
13:45:09 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 2570 elements
13:45:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:09 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:09 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 2570 elements
13:45:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 01:00:00 (before)
                2023-09-02 02:00:00 (after)
13:45:10 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:10 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 24x23x5) for time after (2023-09-02 02:00:00)
13:45:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 01:00:00) in space  (linearNDFast)
13:45:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:10 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1310 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1943 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1943 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1943 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1943 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1943 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 586 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1262 elements, expanding data 1
13:45:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:10 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 01:00:00, weight 0.10) and
                      after (2023-09-02 02:00:00, weight 0.90) in time
13:45:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06080695566662 and -58.97313119152809 degrees.
13:45:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06080695566662 and -58.97313119152809 degrees.
13:45:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:10 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:10 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:10 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.820433 (min) 1.08884 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.862463 (min) 0.674841 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -2.30202e-05 (min) 0.000772493 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.71601 (min) 6.8498 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.91695 (min) 5.38466 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0891 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1527:               2570 active elements
13:45:10 DEBUG   opendrift.models.basemodel:1538:               59.10080047414852 <- latitude  -> 59.18369314000686
13:45:10 DEBUG   opendrift.models.basemodel:1543:               10.939203599015013 <- longitude -> 11.026879351657112
13:45:10 DEBUG   opendrift.models.basemodel:1548:               -14.185067405700684   <- z ->   0.0
13:45:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:10 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:10 DEBUG   opendrift.models.physics_methods:1049:    min: 0.054158, mean: 2.817206, max: 8.081430
13:45:10 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.054158, mean: 2.817206, max: 8.081430
13:45:10 DEBUG   opendrift.models.basemodel:813: 338 elements hit coastline, moving back to water
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:10 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:10 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:10 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2570 elements above 0.100m with wind-sheared ocean current (0.013440 m/s - 0.157506 m/s)
13:45:10 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:10 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:10 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08081663114507674
13:45:10 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:10 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:10 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:10 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 172 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 183 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 149 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 160 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 154 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 146 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:10 DEBUG   opendrift.models.oceandrift:582: 151 elements penetrated seafloor, lifting up
13:45:10 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:10 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:10 DEBUG   opendrift.models.basemodel:2945: 2570 active elements (0 deactivated)
13:45:10 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7430, already seeded 2570
13:45:10 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 2604 elements
13:45:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:10 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1842 (max)
13:45:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1527:               2604 active elements
13:45:10 DEBUG   opendrift.models.basemodel:1538:               59.0990584664941 <- latitude  -> 59.18409030445963
13:45:10 DEBUG   opendrift.models.basemodel:1543:               10.941113981941369 <- longitude -> 11.026834533113766
13:45:10 DEBUG   opendrift.models.basemodel:1548:               -14.10318588256836   <- z ->   0.0
13:45:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:836: Lifting 220 elements to seafloor.
13:45:10 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:10 INFO    opendrift.models.basemodel:2882: 2023-09-02 02:03:54.338376 - step 75 of 216 - 2604 active elements (0 deactivated)
13:45:10 DEBUG   opendrift.models.basemodel:2888: 7396 elements scheduled.
13:45:10 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 2604 elements
13:45:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:10 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:10 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 2604 elements
13:45:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:11 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:11 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:11 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 03:00:00)
13:45:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:11 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1348 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1941 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1305 elements, expanding data 1
13:45:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:11 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.93) and
                      after (2023-09-02 03:00:00, weight 0.07) in time
13:45:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.058896576716904 and -58.97317601272532 degrees.
13:45:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.058896576716904 and -58.97317601272532 degrees.
13:45:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:11 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:11 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:11 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.715961 (min) 1.12834 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.08916 (min) 0.684338 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.60616e-05 (min) 0.000622999 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.46738 (min) 6.55509 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.53671 (min) 5.85945 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1842 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1527:               2604 active elements
13:45:11 DEBUG   opendrift.models.basemodel:1538:               59.0990584664941 <- latitude  -> 59.18409030445963
13:45:11 DEBUG   opendrift.models.basemodel:1543:               10.941113981941369 <- longitude -> 11.026834533113766
13:45:11 DEBUG   opendrift.models.basemodel:1548:               -14.10318588256836   <- z ->   0.0
13:45:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:11 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:11 DEBUG   opendrift.models.physics_methods:1049:    min: 0.045704, mean: 2.875922, max: 7.797174
13:45:11 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.045704, mean: 2.875922, max: 7.797174
13:45:11 DEBUG   opendrift.models.basemodel:813: 319 elements hit coastline, moving back to water
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:45:11 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:11 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:11 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 2604 elements above 0.100m with wind-sheared ocean current (0.000387 m/s - 0.177120 m/s)
13:45:11 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:11 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:11 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07523162767513275
13:45:11 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:11 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:11 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:11 DEBUG   opendrift.models.oceandrift:582: 306 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 215 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 205 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 186 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 178 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 154 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 157 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:11 DEBUG   opendrift.models.oceandrift:582: 155 elements penetrated seafloor, lifting up
13:45:11 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:11 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:11 DEBUG   opendrift.models.basemodel:2945: 2604 active elements (0 deactivated)
13:45:11 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7396, already seeded 2604
13:45:11 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 2639 elements
13:45:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:11 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2114 (max)
13:45:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1527:               2639 active elements
13:45:11 DEBUG   opendrift.models.basemodel:1538:               59.10031720638489 <- latitude  -> 59.186176393738926
13:45:11 DEBUG   opendrift.models.basemodel:1543:               10.942161168920252 <- longitude -> 11.028711174421918
13:45:11 DEBUG   opendrift.models.basemodel:1548:               -13.950005331616211   <- z ->   0.0
13:45:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:836: Lifting 213 elements to seafloor.
13:45:11 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:11 INFO    opendrift.models.basemodel:2882: 2023-09-02 02:13:54.338376 - step 76 of 216 - 2639 active elements (0 deactivated)
13:45:11 DEBUG   opendrift.models.basemodel:2888: 7361 elements scheduled.
13:45:11 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 2639 elements
13:45:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:11 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:11 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 2639 elements
13:45:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:12 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:12 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 03:00:00)
13:45:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:12 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1356 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1356 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1356 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1356 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1356 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1985 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1985 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1985 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1985 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1985 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1309 elements, expanding data 1
13:45:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:12 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.77) and
                      after (2023-09-02 03:00:00, weight 0.23) in time
13:45:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0578494042514 and -58.97129938411272 degrees.
13:45:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0578494042514 and -58.97129938411272 degrees.
13:45:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:12 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:12 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:12 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.797083 (min) 1.46696 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02426 (min) 0.787745 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -3.98805e-05 (min) 0.000666111 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.24274 (min) 6.14392 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.94957 (min) 4.62649 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2114 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1527:               2639 active elements
13:45:12 DEBUG   opendrift.models.basemodel:1538:               59.10031720638489 <- latitude  -> 59.186176393738926
13:45:12 DEBUG   opendrift.models.basemodel:1543:               10.942161168920252 <- longitude -> 11.028711174421918
13:45:12 DEBUG   opendrift.models.basemodel:1548:               -13.950005331616211   <- z ->   0.0
13:45:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:12 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:12 DEBUG   opendrift.models.physics_methods:1049:    min: 0.073964, mean: 2.911220, max: 7.800887
13:45:12 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.073964, mean: 2.911220, max: 7.800887
13:45:12 DEBUG   opendrift.models.basemodel:813: 328 elements hit coastline, moving back to water
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:12 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:12 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:12 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 2639 elements above 0.100m with wind-sheared ocean current (0.005916 m/s - 0.111688 m/s)
13:45:12 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:12 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:12 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07530328200490952
13:45:12 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:12 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:12 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:12 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 199 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 176 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:12 DEBUG   opendrift.models.oceandrift:582: 162 elements penetrated seafloor, lifting up
13:45:12 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:45:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:45:12 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:12 DEBUG   opendrift.models.basemodel:2945: 2639 active elements (0 deactivated)
13:45:12 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7361, already seeded 2639
13:45:12 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 2674 elements
13:45:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:12 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3248 (max)
13:45:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1527:               2674 active elements
13:45:12 DEBUG   opendrift.models.basemodel:1538:               59.10117667977312 <- latitude  -> 59.1863059029583
13:45:12 DEBUG   opendrift.models.basemodel:1543:               10.943631637064716 <- longitude -> 11.028953371263862
13:45:12 DEBUG   opendrift.models.basemodel:1548:               -13.553776969909668   <- z ->   0.0
13:45:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:836: Lifting 206 elements to seafloor.
13:45:12 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:12 INFO    opendrift.models.basemodel:2882: 2023-09-02 02:23:54.338376 - step 77 of 216 - 2674 active elements (0 deactivated)
13:45:12 DEBUG   opendrift.models.basemodel:2888: 7326 elements scheduled.
13:45:12 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 2674 elements
13:45:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:12 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:12 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 2674 elements
13:45:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:13 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:13 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:13 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 03:00:00)
13:45:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:13 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1411 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1411 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1411 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1411 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1411 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2007 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 679 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2007 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 679 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2007 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 679 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2007 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 679 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2007 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 679 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1353 elements, expanding data 1
13:45:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:13 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.60) and
                      after (2023-09-02 03:00:00, weight 0.40) in time
13:45:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05637891683071 and -58.97105717870981 degrees.
13:45:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05637891683071 and -58.97105717870981 degrees.
13:45:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:13 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:13 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:13 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.853469 (min) 1.2764 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07317 (min) 0.671628 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -1.80238e-05 (min) 0.000699307 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.36683 (min) 5.68866 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.09937 (min) 4.53987 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3248 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1527:               2674 active elements
13:45:13 DEBUG   opendrift.models.basemodel:1538:               59.10117667977312 <- latitude  -> 59.1863059029583
13:45:13 DEBUG   opendrift.models.basemodel:1543:               10.943631637064716 <- longitude -> 11.028953371263862
13:45:13 DEBUG   opendrift.models.basemodel:1548:               -13.485807418823242   <- z ->   0.0
13:45:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:13 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:13 DEBUG   opendrift.models.physics_methods:1049:    min: 0.091291, mean: 2.954652, max: 8.755126
13:45:13 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.091291, mean: 2.954652, max: 8.755126
13:45:13 DEBUG   opendrift.models.basemodel:813: 359 elements hit coastline, moving back to water
13:45:13 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:13 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:13 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:13 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 2674 elements above 0.100m with wind-sheared ocean current (0.000533 m/s - 0.152427 m/s)
13:45:13 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:13 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:13 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09485184023054122
13:45:13 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:13 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:13 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:13 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 227 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 196 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 178 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 161 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 162 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:13 DEBUG   opendrift.models.oceandrift:582: 147 elements penetrated seafloor, lifting up
13:45:13 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:13 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:13 DEBUG   opendrift.models.basemodel:2945: 2674 active elements (0 deactivated)
13:45:13 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7326, already seeded 2674
13:45:13 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 2709 elements
13:45:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:13 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3633 (max)
13:45:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1527:               2709 active elements
13:45:13 DEBUG   opendrift.models.basemodel:1538:               59.10139562870497 <- latitude  -> 59.18891576948117
13:45:13 DEBUG   opendrift.models.basemodel:1543:               10.940525170268884 <- longitude -> 11.028097895435081
13:45:13 DEBUG   opendrift.models.basemodel:1548:               -14.167549362182617   <- z ->   0.0
13:45:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:836: Lifting 212 elements to seafloor.
13:45:13 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:13 INFO    opendrift.models.basemodel:2882: 2023-09-02 02:33:54.338376 - step 78 of 216 - 2709 active elements (0 deactivated)
13:45:13 DEBUG   opendrift.models.basemodel:2888: 7291 elements scheduled.
13:45:13 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 2709 elements
13:45:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:13 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:13 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 2709 elements
13:45:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:14 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:14 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:14 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:14 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:14 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:14 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 03:00:00)
13:45:14 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:14 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1428 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1428 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1428 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1428 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1428 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2040 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 680 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2040 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 680 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2040 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 680 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2040 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 680 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2040 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 680 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1370 elements, expanding data 1
13:45:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:14 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.43) and
                      after (2023-09-02 03:00:00, weight 0.57) in time
13:45:14 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05948538365488 and -58.971912664086446 degrees.
13:45:14 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05948538365488 and -58.971912664086446 degrees.
13:45:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:14 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:14 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:14 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:14 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:14 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.690745 (min) 1.21436 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.09219 (min) 0.934963 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.82874e-05 (min) 0.000701738 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.18507 (min) 5.79071 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.38865 (min) 4.72332 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3633 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1527:               2709 active elements
13:45:14 DEBUG   opendrift.models.basemodel:1538:               59.10139562870497 <- latitude  -> 59.18891576948117
13:45:14 DEBUG   opendrift.models.basemodel:1543:               10.940525170268884 <- longitude -> 11.028097895435081
13:45:14 DEBUG   opendrift.models.basemodel:1548:               -14.167549362182617   <- z ->   0.0
13:45:14 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:14 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:14 DEBUG   opendrift.models.physics_methods:1049:    min: 0.065950, mean: 3.018464, max: 8.347218
13:45:14 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.065950, mean: 3.018464, max: 8.347218
13:45:14 DEBUG   opendrift.models.basemodel:813: 349 elements hit coastline, moving back to water
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:45:14 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:14 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:14 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 2709 elements above 0.100m with wind-sheared ocean current (0.008560 m/s - 0.135588 m/s)
13:45:14 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:14 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:14 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08621966951711654
13:45:14 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:14 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:14 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:14 DEBUG   opendrift.models.oceandrift:582: 317 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 251 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 186 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 200 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:14 DEBUG   opendrift.models.oceandrift:582: 159 elements penetrated seafloor, lifting up
13:45:14 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:14 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:14 DEBUG   opendrift.models.basemodel:2945: 2709 active elements (0 deactivated)
13:45:14 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7291, already seeded 2709
13:45:14 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 2743 elements
13:45:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:14 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:14 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:14 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:14 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:14 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:14 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3766 (max)
13:45:14 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1527:               2743 active elements
13:45:14 DEBUG   opendrift.models.basemodel:1538:               59.101187967240264 <- latitude  -> 59.186655445726785
13:45:14 DEBUG   opendrift.models.basemodel:1543:               10.943215637302261 <- longitude -> 11.029698729206675
13:45:14 DEBUG   opendrift.models.basemodel:1548:               -14.936067700027975   <- z ->   0.0
13:45:14 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:836: Lifting 215 elements to seafloor.
13:45:14 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:14 INFO    opendrift.models.basemodel:2882: 2023-09-02 02:43:54.338376 - step 79 of 216 - 2743 active elements (0 deactivated)
13:45:14 DEBUG   opendrift.models.basemodel:2888: 7257 elements scheduled.
13:45:14 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 2743 elements
13:45:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:14 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:14 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 2743 elements
13:45:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:14 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 03:00:00)
13:45:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2067 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 690 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2067 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 690 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2067 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 690 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2067 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 690 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2067 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 690 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.27) and
                      after (2023-09-02 03:00:00, weight 0.73) in time
13:45:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056794926888614 and -58.97031182764505 degrees.
13:45:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.056794926888614 and -58.97031182764505 degrees.
13:45:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.736735 (min) 1.17611 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.853902 (min) 0.662294 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.82083e-05 (min) 0.000733758 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.41626 (min) 5.54623 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.7796 (min) 4.59885 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3766 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1527:               2743 active elements
13:45:15 DEBUG   opendrift.models.basemodel:1538:               59.101187967240264 <- latitude  -> 59.186655445726785
13:45:15 DEBUG   opendrift.models.basemodel:1543:               10.943215637302261 <- longitude -> 11.029698729206675
13:45:15 DEBUG   opendrift.models.basemodel:1548:               -14.936067700027975   <- z ->   0.0
13:45:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:15 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:15 DEBUG   opendrift.models.physics_methods:1049:    min: 0.059152, mean: 3.085674, max: 9.478668
13:45:15 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.059152, mean: 3.085674, max: 9.478668
13:45:15 DEBUG   opendrift.models.basemodel:813: 346 elements hit coastline, moving back to water
13:45:15 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:15 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 2743 elements above 0.100m with wind-sheared ocean current (0.018222 m/s - 0.182024 m/s)
13:45:15 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11117648327739715
13:45:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:15 DEBUG   opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 195 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 205 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:15 DEBUG   opendrift.models.basemodel:2945: 2743 active elements (0 deactivated)
13:45:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7257, already seeded 2743
13:45:15 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 2778 elements
13:45:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3618 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1527:               2778 active elements
13:45:15 DEBUG   opendrift.models.basemodel:1538:               59.10034389705555 <- latitude  -> 59.18669672884549
13:45:15 DEBUG   opendrift.models.basemodel:1543:               10.941739482210336 <- longitude -> 11.033381194688292
13:45:15 DEBUG   opendrift.models.basemodel:1548:               -14.295807824746834   <- z ->   0.0
13:45:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 226 elements to seafloor.
13:45:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:15 INFO    opendrift.models.basemodel:2882: 2023-09-02 02:53:54.338376 - step 80 of 216 - 2778 active elements (0 deactivated)
13:45:15 DEBUG   opendrift.models.basemodel:2888: 7222 elements scheduled.
13:45:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 2778 elements
13:45:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 2778 elements
13:45:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 02:00:00 (before)
                2023-09-02 03:00:00 (after)
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 03:00:00)
13:45:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 02:00:00) in space  (linearNDFast)
13:45:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1475 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1475 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1475 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1475 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1475 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1417 elements, expanding data 1
13:45:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 02:00:00, weight 0.10) and
                      after (2023-09-02 03:00:00, weight 0.90) in time
13:45:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05827107112458 and -58.96662937103392 degrees.
13:45:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05827107112458 and -58.96662937103392 degrees.
13:45:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.868364 (min) 1.21285 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.2479 (min) 0.85177 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -3.05991e-05 (min) 0.000769006 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.28993 (min) 6.11018 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1844 (min) 4.23191 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3618 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1527:               2778 active elements
13:45:15 DEBUG   opendrift.models.basemodel:1538:               59.10034389705555 <- latitude  -> 59.18669672884549
13:45:15 DEBUG   opendrift.models.basemodel:1543:               10.941739482210336 <- longitude -> 11.033381194688292
13:45:15 DEBUG   opendrift.models.basemodel:1548:               -14.295807824746834   <- z ->   0.0
13:45:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:15 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:15 DEBUG   opendrift.models.physics_methods:1049:    min: 0.069193, mean: 3.164601, max: 8.827508
13:45:15 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.069193, mean: 3.164601, max: 8.827508
13:45:15 DEBUG   opendrift.models.basemodel:813: 370 elements hit coastline, moving back to water
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:45:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:15 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 2778 elements above 0.100m with wind-sheared ocean current (0.003362 m/s - 0.172875 m/s)
13:45:15 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09642663767440796
13:45:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:15 DEBUG   opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 264 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 189 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:15 DEBUG   opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
13:45:15 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:15 DEBUG   opendrift.models.basemodel:2945: 2778 active elements (0 deactivated)
13:45:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7222, already seeded 2778
13:45:15 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 2813 elements
13:45:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.329 (max)
13:45:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1527:               2813 active elements
13:45:15 DEBUG   opendrift.models.basemodel:1538:               59.103349953263475 <- latitude  -> 59.18630804455449
13:45:15 DEBUG   opendrift.models.basemodel:1543:               10.943439563355476 <- longitude -> 11.028704130702499
13:45:15 DEBUG   opendrift.models.basemodel:1548:               -13.66349624633789   <- z ->   0.0
13:45:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:836: Lifting 202 elements to seafloor.
13:45:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:15 INFO    opendrift.models.basemodel:2882: 2023-09-02 03:03:54.338376 - step 81 of 216 - 2813 active elements (0 deactivated)
13:45:15 DEBUG   opendrift.models.basemodel:2888: 7187 elements scheduled.
13:45:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 2813 elements
13:45:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 2813 elements
13:45:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:16 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:16 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:16 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 04:00:00)
13:45:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:16 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1503 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1503 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1503 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1503 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1503 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2123 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 732 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2123 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 732 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2123 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 732 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2123 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 732 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2123 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 732 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1444 elements, expanding data 1
13:45:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
13:45:16 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.93) and
                      after (2023-09-02 04:00:00, weight 0.07) in time
13:45:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05657099488989 and -58.97130642933941 degrees.
13:45:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05657099488989 and -58.97130642933941 degrees.
13:45:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:16 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:16 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:16 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.787906 (min) 1.0973 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02468 (min) 0.703091 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.22626e-05 (min) 0.000950412 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.17596 (min) 5.43573 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.71386 (min) 3.62857 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.329 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1527:               2813 active elements
13:45:16 DEBUG   opendrift.models.basemodel:1538:               59.103349953263475 <- latitude  -> 59.18630804455449
13:45:16 DEBUG   opendrift.models.basemodel:1543:               10.943439563355476 <- longitude -> 11.028704130702499
13:45:16 DEBUG   opendrift.models.basemodel:1548:               -13.66349624633789   <- z ->   0.0
13:45:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:16 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:16 DEBUG   opendrift.models.physics_methods:1049:    min: 0.097419, mean: 3.133798, max: 8.320859
13:45:16 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.097419, mean: 3.133798, max: 8.320859
13:45:16 DEBUG   opendrift.models.basemodel:813: 357 elements hit coastline, moving back to water
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
13:45:16 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:16 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:16 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 2813 elements above 0.100m with wind-sheared ocean current (0.000889 m/s - 0.127349 m/s)
13:45:16 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:16 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:16 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08567604293878554
13:45:16 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:16 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:16 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:16 DEBUG   opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 229 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 216 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 213 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:16 DEBUG   opendrift.models.oceandrift:582: 197 elements penetrated seafloor, lifting up
13:45:16 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:16 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:16 DEBUG   opendrift.models.basemodel:2945: 2813 active elements (0 deactivated)
13:45:16 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7187, already seeded 2813
13:45:16 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 2847 elements
13:45:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:16 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2902 (max)
13:45:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1527:               2847 active elements
13:45:16 DEBUG   opendrift.models.basemodel:1538:               59.10287379514418 <- latitude  -> 59.18766834336033
13:45:16 DEBUG   opendrift.models.basemodel:1543:               10.941350439501761 <- longitude -> 11.028710877777357
13:45:16 DEBUG   opendrift.models.basemodel:1548:               -13.978867530822754   <- z ->   0.0
13:45:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:836: Lifting 210 elements to seafloor.
13:45:16 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:16 INFO    opendrift.models.basemodel:2882: 2023-09-02 03:13:54.338376 - step 82 of 216 - 2847 active elements (0 deactivated)
13:45:16 DEBUG   opendrift.models.basemodel:2888: 7153 elements scheduled.
13:45:16 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 2847 elements
13:45:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:16 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:16 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 2847 elements
13:45:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 04:00:00)
13:45:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1524 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1524 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1524 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1524 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1524 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2143 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2143 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2143 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2143 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2143 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1468 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.77) and
                      after (2023-09-02 04:00:00, weight 0.23) in time
13:45:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.058660106868736 and -58.971299683729875 degrees.
13:45:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.058660106868736 and -58.971299683729875 degrees.
13:45:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.685584 (min) 1.17493 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00479 (min) 0.822986 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.63829e-05 (min) 0.000741827 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.64198 (min) 5.48872 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1275 (min) 3.45487 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2902 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1527:               2847 active elements
13:45:18 DEBUG   opendrift.models.basemodel:1538:               59.10287379514418 <- latitude  -> 59.18766834336033
13:45:18 DEBUG   opendrift.models.basemodel:1543:               10.941350439501761 <- longitude -> 11.028710877777357
13:45:18 DEBUG   opendrift.models.basemodel:1548:               -13.943695068359375   <- z ->   0.0
13:45:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.090916, mean: 3.170698, max: 8.833249
13:45:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.090916, mean: 3.170698, max: 8.833249
13:45:18 DEBUG   opendrift.models.basemodel:813: 369 elements hit coastline, moving back to water
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:18 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 2847 elements above 0.100m with wind-sheared ocean current (0.006126 m/s - 0.154794 m/s)
13:45:18 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09655207909687041
13:45:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:18 DEBUG   opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 247 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 224 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 184 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 190 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:18 DEBUG   opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
13:45:18 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:18 DEBUG   opendrift.models.basemodel:2945: 2847 active elements (0 deactivated)
13:45:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7153, already seeded 2847
13:45:18 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 2882 elements
13:45:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:18 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2986 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1527:               2882 active elements
13:45:18 DEBUG   opendrift.models.basemodel:1538:               59.102043939387215 <- latitude  -> 59.187428508408935
13:45:18 DEBUG   opendrift.models.basemodel:1543:               10.942066230951156 <- longitude -> 11.030017080539627
13:45:18 DEBUG   opendrift.models.basemodel:1548:               -14.089959920165725   <- z ->   0.0
13:45:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:836: Lifting 194 elements to seafloor.
13:45:18 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:18 INFO    opendrift.models.basemodel:2882: 2023-09-02 03:23:54.338376 - step 83 of 216 - 2882 active elements (0 deactivated)
13:45:18 DEBUG   opendrift.models.basemodel:2888: 7118 elements scheduled.
13:45:18 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 2882 elements
13:45:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 2882 elements
13:45:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 04:00:00)
13:45:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1555 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1555 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1555 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1555 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1555 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 759 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 1
13:45:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.60) and
                      after (2023-09-02 04:00:00, weight 0.40) in time
13:45:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057944329696724 and -58.969993479734114 degrees.
13:45:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.057944329696724 and -58.969993479734114 degrees.
13:45:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.727558 (min) 1.17857 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.925808 (min) 0.714627 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.24991e-05 (min) 0.000767655 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.87234 (min) 6.30584 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.05998 (min) 4.31611 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2986 (max)
13:45:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:18 DEBUG   opendrift.models.basemodel:1527:               2882 active elements
13:45:18 DEBUG   opendrift.models.basemodel:1538:               59.102043939387215 <- latitude  -> 59.187428508408935
13:45:18 DEBUG   opendrift.models.basemodel:1543:               10.942066230951156 <- longitude -> 11.030017080539627
13:45:18 DEBUG   opendrift.models.basemodel:1548:               -14.089959920165725   <- z ->   0.0
13:45:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.096667, mean: 3.106058, max: 8.253650
13:45:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.096667, mean: 3.106058, max: 8.253650
13:45:18 DEBUG   opendrift.models.basemodel:813: 367 elements hit coastline, moving back to water
13:45:18 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:19 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 2882 elements above 0.100m with wind-sheared ocean current (0.017173 m/s - 0.129517 m/s)
13:45:19 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:19 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:19 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08429764385993957
13:45:19 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:19 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:19 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:19 DEBUG   opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 231 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 197 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:19 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:19 DEBUG   opendrift.models.basemodel:2945: 2882 active elements (0 deactivated)
13:45:19 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7118, already seeded 2882
13:45:19 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 2917 elements
13:45:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:19 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3162 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1527:               2917 active elements
13:45:19 DEBUG   opendrift.models.basemodel:1538:               59.10079154741668 <- latitude  -> 59.18652014138921
13:45:19 DEBUG   opendrift.models.basemodel:1543:               10.941152557752561 <- longitude -> 11.032232167511633
13:45:19 DEBUG   opendrift.models.basemodel:1548:               -14.053828556474615   <- z ->   0.0
13:45:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 210 elements to seafloor.
13:45:19 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:19 INFO    opendrift.models.basemodel:2882: 2023-09-02 03:33:54.338376 - step 84 of 216 - 2917 active elements (0 deactivated)
13:45:19 DEBUG   opendrift.models.basemodel:2888: 7083 elements scheduled.
13:45:19 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 2917 elements
13:45:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 2917 elements
13:45:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:19 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:19 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 04:00:00)
13:45:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:19 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2217 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 778 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2217 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 778 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2217 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 778 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2217 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 778 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2217 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 778 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1514 elements, expanding data 1
13:45:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
13:45:19 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.43) and
                      after (2023-09-02 04:00:00, weight 0.57) in time
13:45:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05885800511352 and -58.9677783887591 degrees.
13:45:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05885800511352 and -58.9677783887591 degrees.
13:45:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:19 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:19 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:19 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.799578 (min) 1.15756 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.973468 (min) 0.709439 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000111882 (min) 0.000897427 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.45078 (min) 5.36291 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.99461 (min) 4.36957 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3162 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1527:               2917 active elements
13:45:19 DEBUG   opendrift.models.basemodel:1538:               59.10079154741668 <- latitude  -> 59.18652014138921
13:45:19 DEBUG   opendrift.models.basemodel:1543:               10.941152557752561 <- longitude -> 11.032232167511633
13:45:19 DEBUG   opendrift.models.basemodel:1548:               -14.053828556474615   <- z ->   0.0
13:45:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:19 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:19 DEBUG   opendrift.models.physics_methods:1049:    min: 0.018594, mean: 3.073687, max: 8.130168
13:45:19 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.018594, mean: 3.073687, max: 8.130168
13:45:19 DEBUG   opendrift.models.basemodel:813: 356 elements hit coastline, moving back to water
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:45:19 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:19 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:19 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 2917 elements above 0.100m with wind-sheared ocean current (0.003621 m/s - 0.134831 m/s)
13:45:19 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:19 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:19 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.081794306231575
13:45:19 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:19 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:19 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:19 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 233 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 226 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 204 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 190 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 199 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 192 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 179 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 23 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
13:45:19 DEBUG   opendrift.models.oceandrift:582: 166 elements penetrated seafloor, lifting up
13:45:19 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:19 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:19 DEBUG   opendrift.models.basemodel:2945: 2917 active elements (0 deactivated)
13:45:19 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7083, already seeded 2917
13:45:19 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 2952 elements
13:45:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:19 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2594 (max)
13:45:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1527:               2952 active elements
13:45:19 DEBUG   opendrift.models.basemodel:1538:               59.10202787189384 <- latitude  -> 59.18773435849087
13:45:19 DEBUG   opendrift.models.basemodel:1543:               10.939265298417519 <- longitude -> 11.032180693872789
13:45:19 DEBUG   opendrift.models.basemodel:1548:               -14.428035834072206   <- z ->   0.0
13:45:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:836: Lifting 215 elements to seafloor.
13:45:19 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:19 INFO    opendrift.models.basemodel:2882: 2023-09-02 03:43:54.338376 - step 85 of 216 - 2952 active elements (0 deactivated)
13:45:19 DEBUG   opendrift.models.basemodel:2888: 7048 elements scheduled.
13:45:19 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 2952 elements
13:45:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 2952 elements
13:45:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:20 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:20 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:20 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 04:00:00)
13:45:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:20 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1596 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1596 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1596 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1596 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1596 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 790 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 790 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 790 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 790 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 790 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
13:45:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
13:45:20 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.27) and
                      after (2023-09-02 04:00:00, weight 0.73) in time
13:45:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.060745259857484 and -58.96782986560035 degrees.
13:45:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.060745259857484 and -58.96782986560035 degrees.
13:45:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:20 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:20 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:20 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.703137 (min) 1.26996 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.958365 (min) 0.786764 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.72679e-05 (min) 0.00084092 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.30915 (min) 5.41786 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.7568 (min) 3.71714 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2594 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1527:               2952 active elements
13:45:20 DEBUG   opendrift.models.basemodel:1538:               59.10202787189384 <- latitude  -> 59.18773435849087
13:45:20 DEBUG   opendrift.models.basemodel:1543:               10.939265298417519 <- longitude -> 11.032180693872789
13:45:20 DEBUG   opendrift.models.basemodel:1548:               -14.428035834072206   <- z ->   0.0
13:45:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:20 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:20 DEBUG   opendrift.models.physics_methods:1049:    min: 0.108621, mean: 3.136076, max: 9.691098
13:45:20 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.108621, mean: 3.136076, max: 9.691098
13:45:20 DEBUG   opendrift.models.basemodel:813: 375 elements hit coastline, moving back to water
13:45:20 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:20 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:20 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:20 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 2952 elements above 0.100m with wind-sheared ocean current (0.017461 m/s - 0.131255 m/s)
13:45:20 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:20 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:20 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11621536193378448
13:45:20 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:20 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:20 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:20 DEBUG   opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 240 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 227 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 209 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 202 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 202 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 18 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 196 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 183 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:20 DEBUG   opendrift.models.oceandrift:582: 184 elements penetrated seafloor, lifting up
13:45:20 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:20 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:20 DEBUG   opendrift.models.basemodel:2945: 2952 active elements (0 deactivated)
13:45:20 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7048, already seeded 2952
13:45:20 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 2986 elements
13:45:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:20 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2781 (max)
13:45:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1527:               2986 active elements
13:45:20 DEBUG   opendrift.models.basemodel:1538:               59.10182045691718 <- latitude  -> 59.18982883955792
13:45:20 DEBUG   opendrift.models.basemodel:1543:               10.942005065207832 <- longitude -> 11.028653158499443
13:45:20 DEBUG   opendrift.models.basemodel:1548:               -13.880593528747559   <- z ->   0.0
13:45:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:836: Lifting 220 elements to seafloor.
13:45:20 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:20 INFO    opendrift.models.basemodel:2882: 2023-09-02 03:53:54.338376 - step 86 of 216 - 2986 active elements (0 deactivated)
13:45:20 DEBUG   opendrift.models.basemodel:2888: 7014 elements scheduled.
13:45:20 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 2986 elements
13:45:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:20 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:20 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 2986 elements
13:45:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 03:00:00 (before)
                2023-09-02 04:00:00 (after)
13:45:21 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:21 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 04:00:00)
13:45:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 03:00:00) in space  (linearNDFast)
13:45:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:21 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1625 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1625 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1625 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1625 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1625 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2257 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1551 elements, expanding data 1
13:45:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
13:45:21 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 03:00:00, weight 0.10) and
                      after (2023-09-02 04:00:00, weight 0.90) in time
13:45:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05800549838179 and -58.971357396157686 degrees.
13:45:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05800549838179 and -58.971357396157686 degrees.
13:45:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:21 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:21 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:21 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.810089 (min) 1.47712 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.12707 (min) 0.707007 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.06166e-05 (min) 0.000890976 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.04564 (min) 5.50884 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.29492 (min) 4.36494 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2781 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1527:               2986 active elements
13:45:21 DEBUG   opendrift.models.basemodel:1538:               59.10182045691718 <- latitude  -> 59.18982883955792
13:45:21 DEBUG   opendrift.models.basemodel:1543:               10.942005065207832 <- longitude -> 11.028653158499443
13:45:21 DEBUG   opendrift.models.basemodel:1548:               -13.880593528747559   <- z ->   0.0
13:45:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:21 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:21 DEBUG   opendrift.models.physics_methods:1049:    min: 0.093416, mean: 3.084523, max: 9.147233
13:45:21 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.093416, mean: 3.084523, max: 9.147233
13:45:21 DEBUG   opendrift.models.basemodel:813: 376 elements hit coastline, moving back to water
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:45:21 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:21 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:21 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 2986 elements above 0.100m with wind-sheared ocean current (0.006266 m/s - 0.148709 m/s)
13:45:21 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:21 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:21 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1035377980366516
13:45:21 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:21 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:21 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:21 DEBUG   opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 234 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 206 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 234 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 227 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 223 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 181 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 21 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
13:45:21 DEBUG   opendrift.models.oceandrift:582: 214 elements penetrated seafloor, lifting up
13:45:21 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:21 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:21 DEBUG   opendrift.models.basemodel:2945: 2986 active elements (0 deactivated)
13:45:21 DEBUG   opendrift.models.basemodel:1658: to be seeded: 7014, already seeded 2986
13:45:21 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 3021 elements
13:45:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:21 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2134 (max)
13:45:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1527:               3021 active elements
13:45:21 DEBUG   opendrift.models.basemodel:1538:               59.10283211429963 <- latitude  -> 59.18688818746912
13:45:21 DEBUG   opendrift.models.basemodel:1543:               10.94098423471341 <- longitude -> 11.026961162842008
13:45:21 DEBUG   opendrift.models.basemodel:1548:               -15.268097152709961   <- z ->   0.0
13:45:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:836: Lifting 227 elements to seafloor.
13:45:21 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:21 INFO    opendrift.models.basemodel:2882: 2023-09-02 04:03:54.338376 - step 87 of 216 - 3021 active elements (0 deactivated)
13:45:21 DEBUG   opendrift.models.basemodel:2888: 6979 elements scheduled.
13:45:21 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 3021 elements
13:45:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:21 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:21 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 3021 elements
13:45:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:22 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:22 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 05:00:00)
13:45:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:22 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1647 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1647 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1647 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1647 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1647 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1647 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2288 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2288 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2288 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2288 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2288 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2288 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1577 elements, expanding data 1
13:45:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:22 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.93) and
                      after (2023-09-02 05:00:00, weight 0.07) in time
13:45:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05902633395807 and -58.97304938040419 degrees.
13:45:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.05902633395807 and -58.97304938040419 degrees.
13:45:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:22 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:22 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:22 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.842935 (min) 1.00289 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.886938 (min) 0.74505 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000103129 (min) 0.000748093 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.6087 (min) 7.01947 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.92741 (min) 3.77554 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2134 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1527:               3021 active elements
13:45:22 DEBUG   opendrift.models.basemodel:1538:               59.10283211429963 <- latitude  -> 59.18688818746912
13:45:22 DEBUG   opendrift.models.basemodel:1543:               10.94098423471341 <- longitude -> 11.026961162842008
13:45:22 DEBUG   opendrift.models.basemodel:1548:               -15.213371276855469   <- z ->   0.0
13:45:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:22 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:22 DEBUG   opendrift.models.physics_methods:1049:    min: 0.043817, mean: 3.034481, max: 8.232617
13:45:22 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.043817, mean: 3.034481, max: 8.232617
13:45:22 DEBUG   opendrift.models.basemodel:813: 390 elements hit coastline, moving back to water
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:45:22 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:22 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:22 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3021 elements above 0.100m with wind-sheared ocean current (0.003362 m/s - 0.148599 m/s)
13:45:22 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:22 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:22 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08386860064990997
13:45:22 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:22 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:22 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:22 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 263 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 217 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 229 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 19 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:22 DEBUG   opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
13:45:22 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:22 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:22 DEBUG   opendrift.models.basemodel:2945: 3021 active elements (0 deactivated)
13:45:22 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6979, already seeded 3021
13:45:22 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 3056 elements
13:45:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:22 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1439 (max)
13:45:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1527:               3056 active elements
13:45:22 DEBUG   opendrift.models.basemodel:1538:               59.103906287008776 <- latitude  -> 59.18819588438299
13:45:22 DEBUG   opendrift.models.basemodel:1543:               10.938065860529 <- longitude -> 11.03350665541539
13:45:22 DEBUG   opendrift.models.basemodel:1548:               -13.862772216796875   <- z ->   0.0
13:45:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:836: Lifting 223 elements to seafloor.
13:45:22 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:22 INFO    opendrift.models.basemodel:2882: 2023-09-02 04:13:54.338376 - step 88 of 216 - 3056 active elements (0 deactivated)
13:45:22 DEBUG   opendrift.models.basemodel:2888: 6944 elements scheduled.
13:45:22 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 3056 elements
13:45:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:22 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:22 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 3056 elements
13:45:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:23 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:23 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:23 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 05:00:00)
13:45:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:23 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1673 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 836 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 836 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 836 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 836 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 836 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1610 elements, expanding data 1
13:45:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:23 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.77) and
                      after (2023-09-02 05:00:00, weight 0.23) in time
13:45:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06194470719528 and -58.966503913513506 degrees.
13:45:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06194470719528 and -58.966503913513506 degrees.
13:45:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:23 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:23 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:23 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.777737 (min) 1.11129 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.971139 (min) 0.692123 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.50272e-05 (min) 0.000755808 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.7043 (min) 7.43551 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.48991 (min) 4.96767 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1439 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1527:               3056 active elements
13:45:23 DEBUG   opendrift.models.basemodel:1538:               59.103906287008776 <- latitude  -> 59.18819588438299
13:45:23 DEBUG   opendrift.models.basemodel:1543:               10.938065860529 <- longitude -> 11.03350665541539
13:45:23 DEBUG   opendrift.models.basemodel:1548:               -13.862772216796875   <- z ->   0.0
13:45:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:23 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:23 DEBUG   opendrift.models.physics_methods:1049:    min: 0.079020, mean: 2.928818, max: 8.100895
13:45:23 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.079020, mean: 2.928818, max: 8.100895
13:45:23 DEBUG   opendrift.models.basemodel:813: 406 elements hit coastline, moving back to water
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:23 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:23 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:23 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 3056 elements above 0.100m with wind-sheared ocean current (0.008775 m/s - 0.172626 m/s)
13:45:23 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:23 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:23 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08120637349565506
13:45:23 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:23 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:23 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:23 DEBUG   opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 235 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 202 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 197 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 201 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 174 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:23 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:45:23 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:23 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:23 DEBUG   opendrift.models.basemodel:2945: 3056 active elements (0 deactivated)
13:45:23 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6944, already seeded 3056
13:45:23 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 3090 elements
13:45:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:23 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2072 (max)
13:45:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1527:               3090 active elements
13:45:23 DEBUG   opendrift.models.basemodel:1538:               59.10329286275164 <- latitude  -> 59.185515351132
13:45:23 DEBUG   opendrift.models.basemodel:1543:               10.939508559639512 <- longitude -> 11.028873429801966
13:45:23 DEBUG   opendrift.models.basemodel:1548:               -13.862772216796875   <- z ->   0.0
13:45:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:836: Lifting 230 elements to seafloor.
13:45:23 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:23 INFO    opendrift.models.basemodel:2882: 2023-09-02 04:23:54.338376 - step 89 of 216 - 3090 active elements (0 deactivated)
13:45:23 DEBUG   opendrift.models.basemodel:2888: 6910 elements scheduled.
13:45:23 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 3090 elements
13:45:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:23 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:23 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 3090 elements
13:45:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:24 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:24 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 05:00:00)
13:45:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:24 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1685 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1685 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1685 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1685 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1685 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2322 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2322 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2322 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2322 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2322 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1611 elements, expanding data 1
13:45:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
13:45:24 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.60) and
                      after (2023-09-02 05:00:00, weight 0.40) in time
13:45:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06050200381042 and -58.97113713598866 degrees.
13:45:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06050200381042 and -58.97113713598866 degrees.
13:45:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:24 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:24 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:24 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.847709 (min) 1.34768 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.935835 (min) 0.739281 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.84512e-05 (min) 0.000837906 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.44187 (min) 7.57298 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.05693 (min) 5.34414 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2072 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1527:               3090 active elements
13:45:24 DEBUG   opendrift.models.basemodel:1538:               59.10329286275164 <- latitude  -> 59.185515351132
13:45:24 DEBUG   opendrift.models.basemodel:1543:               10.939508559639512 <- longitude -> 11.028873429801966
13:45:24 DEBUG   opendrift.models.basemodel:1548:               -13.79893970489502   <- z ->   0.0
13:45:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:24 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:24 DEBUG   opendrift.models.physics_methods:1049:    min: 0.078029, mean: 2.842038, max: 7.988655
13:45:24 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.078029, mean: 2.842038, max: 7.988655
13:45:24 DEBUG   opendrift.models.basemodel:813: 383 elements hit coastline, moving back to water
13:45:24 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:24 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:24 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:24 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 3090 elements above 0.100m with wind-sheared ocean current (0.012025 m/s - 0.141740 m/s)
13:45:24 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:24 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:24 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07897182126005173
13:45:24 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:24 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:24 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:24 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 227 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 215 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 194 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 198 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 177 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 175 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 20 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
13:45:24 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:24 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:24 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:24 DEBUG   opendrift.models.basemodel:2945: 3090 active elements (0 deactivated)
13:45:24 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6910, already seeded 3090
13:45:24 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 3125 elements
13:45:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:24 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2234 (max)
13:45:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1527:               3125 active elements
13:45:24 DEBUG   opendrift.models.basemodel:1538:               59.10240733760454 <- latitude  -> 59.186584808265124
13:45:24 DEBUG   opendrift.models.basemodel:1543:               10.939815958028243 <- longitude -> 11.028081581931957
13:45:24 DEBUG   opendrift.models.basemodel:1548:               -14.771073329858869   <- z ->   0.0
13:45:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:836: Lifting 239 elements to seafloor.
13:45:24 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:24 INFO    opendrift.models.basemodel:2882: 2023-09-02 04:33:54.338376 - step 90 of 216 - 3125 active elements (0 deactivated)
13:45:24 DEBUG   opendrift.models.basemodel:2888: 6875 elements scheduled.
13:45:24 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 3125 elements
13:45:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:24 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:24 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 3125 elements
13:45:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:25 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:25 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:25 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:25 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:25 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:25 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:25 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 05:00:00)
13:45:25 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:25 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1719 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1719 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1719 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1719 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1719 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 866 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 866 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 866 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 866 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 866 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
13:45:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:25 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.43) and
                      after (2023-09-02 05:00:00, weight 0.57) in time
13:45:25 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0601946081336 and -58.97192896789855 degrees.
13:45:25 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0601946081336 and -58.97192896789855 degrees.
13:45:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:25 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:25 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:25 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:25 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:25 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.652543 (min) 1.14201 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.04533 (min) 0.702249 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000128207 (min) 0.000863023 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.61878 (min) 7.01417 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.07899 (min) 4.83564 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2234 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1527:               3125 active elements
13:45:25 DEBUG   opendrift.models.basemodel:1538:               59.10240733760454 <- latitude  -> 59.186584808265124
13:45:25 DEBUG   opendrift.models.basemodel:1543:               10.939815958028243 <- longitude -> 11.028081581931957
13:45:25 DEBUG   opendrift.models.basemodel:1548:               -14.771073329858869   <- z ->   0.0
13:45:25 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:25 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:25 DEBUG   opendrift.models.physics_methods:1049:    min: 0.072045, mean: 2.759249, max: 7.847534
13:45:25 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.072045, mean: 2.759249, max: 7.847534
13:45:25 DEBUG   opendrift.models.basemodel:813: 390 elements hit coastline, moving back to water
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:45:25 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:25 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:25 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3125 elements above 0.100m with wind-sheared ocean current (0.008647 m/s - 0.125107 m/s)
13:45:25 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:25 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:25 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07620652204044341
13:45:25 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:25 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:25 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:25 DEBUG   opendrift.models.oceandrift:582: 308 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 235 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 193 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 173 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 16 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:25 DEBUG   opendrift.models.oceandrift:582: 202 elements penetrated seafloor, lifting up
13:45:25 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:25 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:25 DEBUG   opendrift.models.basemodel:2945: 3125 active elements (0 deactivated)
13:45:25 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6875, already seeded 3125
13:45:25 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 3160 elements
13:45:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:25 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:25 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:25 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:25 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:25 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:25 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1553 (max)
13:45:25 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1527:               3160 active elements
13:45:25 DEBUG   opendrift.models.basemodel:1538:               59.10449192028765 <- latitude  -> 59.18577163496311
13:45:25 DEBUG   opendrift.models.basemodel:1543:               10.938068090604796 <- longitude -> 11.031826412184003
13:45:25 DEBUG   opendrift.models.basemodel:1548:               -14.997743698214085   <- z ->   0.0
13:45:25 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:836: Lifting 232 elements to seafloor.
13:45:25 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:25 INFO    opendrift.models.basemodel:2882: 2023-09-02 04:43:54.338376 - step 91 of 216 - 3160 active elements (0 deactivated)
13:45:25 DEBUG   opendrift.models.basemodel:2888: 6840 elements scheduled.
13:45:25 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 3160 elements
13:45:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:25 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:25 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 3160 elements
13:45:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:25 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:26 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:26 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:26 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 05:00:00)
13:45:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:26 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2380 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2380 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2380 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2380 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2380 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1655 elements, expanding data 1
13:45:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:26 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.27) and
                      after (2023-09-02 05:00:00, weight 0.73) in time
13:45:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06194248476139 and -58.96818414063549 degrees.
13:45:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06194248476139 and -58.96818414063549 degrees.
13:45:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:26 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:26 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:26 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.74413 (min) 1.25912 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00879 (min) 0.694504 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000109134 (min) 0.000917846 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.52198 (min) 7.81611 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.07939 (min) 5.06702 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1553 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1527:               3160 active elements
13:45:26 DEBUG   opendrift.models.basemodel:1538:               59.10449192028765 <- latitude  -> 59.18577163496311
13:45:26 DEBUG   opendrift.models.basemodel:1543:               10.938068090604796 <- longitude -> 11.031826412184003
13:45:26 DEBUG   opendrift.models.basemodel:1548:               -14.997743698214085   <- z ->   0.0
13:45:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:26 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:26 DEBUG   opendrift.models.physics_methods:1049:    min: 0.020840, mean: 2.729734, max: 7.981489
13:45:26 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.020840, mean: 2.729734, max: 7.981489
13:45:26 DEBUG   opendrift.models.basemodel:813: 406 elements hit coastline, moving back to water
13:45:26 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:26 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:26 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:26 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3160 elements above 0.100m with wind-sheared ocean current (0.007738 m/s - 0.119607 m/s)
13:45:26 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:26 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:26 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07883021634395598
13:45:26 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:26 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:26 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:26 DEBUG   opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 248 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 219 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 232 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 229 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 230 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 185 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:26 DEBUG   opendrift.models.oceandrift:582: 165 elements penetrated seafloor, lifting up
13:45:26 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:26 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:26 DEBUG   opendrift.models.basemodel:2945: 3160 active elements (0 deactivated)
13:45:26 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6840, already seeded 3160
13:45:26 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 3195 elements
13:45:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:26 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0859 (max)
13:45:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1527:               3195 active elements
13:45:26 DEBUG   opendrift.models.basemodel:1538:               59.10373357378912 <- latitude  -> 59.18543734862557
13:45:26 DEBUG   opendrift.models.basemodel:1543:               10.935208034880477 <- longitude -> 11.027440540211938
13:45:26 DEBUG   opendrift.models.basemodel:1548:               -13.85135482788086   <- z ->   0.0
13:45:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:836: Lifting 240 elements to seafloor.
13:45:26 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:26 INFO    opendrift.models.basemodel:2882: 2023-09-02 04:53:54.338376 - step 92 of 216 - 3195 active elements (0 deactivated)
13:45:26 DEBUG   opendrift.models.basemodel:2888: 6805 elements scheduled.
13:45:26 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 3195 elements
13:45:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:26 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:26 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 3195 elements
13:45:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 04:00:00 (before)
                2023-09-02 05:00:00 (after)
13:45:27 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:27 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:27 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 05:00:00)
13:45:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 04:00:00) in space  (linearNDFast)
13:45:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:27 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2404 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2404 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2404 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2404 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2404 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 900 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1662 elements, expanding data 1
13:45:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
13:45:27 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 04:00:00, weight 0.10) and
                      after (2023-09-02 05:00:00, weight 0.90) in time
13:45:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06480253041208 and -58.97257002065804 degrees.
13:45:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06480253041208 and -58.97257002065804 degrees.
13:45:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:27 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:27 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:27 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.721533 (min) 1.1707 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.827355 (min) 0.692841 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.17577e-05 (min) 0.000656416 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.70438 (min) 8.10014 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.99594 (min) 5.9041 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0859 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1527:               3195 active elements
13:45:27 DEBUG   opendrift.models.basemodel:1538:               59.10373357378912 <- latitude  -> 59.18543734862557
13:45:27 DEBUG   opendrift.models.basemodel:1543:               10.935208034880477 <- longitude -> 11.027440540211938
13:45:27 DEBUG   opendrift.models.basemodel:1548:               -13.85135482788086   <- z ->   0.0
13:45:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:27 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:27 DEBUG   opendrift.models.physics_methods:1049:    min: 0.056803, mean: 2.761181, max: 8.208494
13:45:27 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.056803, mean: 2.761181, max: 8.208494
13:45:27 DEBUG   opendrift.models.basemodel:813: 425 elements hit coastline, moving back to water
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:45:27 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:27 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:27 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3195 elements above 0.100m with wind-sheared ocean current (0.008713 m/s - 0.123700 m/s)
13:45:27 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:27 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:27 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08337782542951583
13:45:27 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:27 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:27 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:27 DEBUG   opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 224 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 245 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 230 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 220 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:27 DEBUG   opendrift.models.oceandrift:582: 191 elements penetrated seafloor, lifting up
13:45:27 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:27 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:27 DEBUG   opendrift.models.basemodel:2945: 3195 active elements (0 deactivated)
13:45:27 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6805, already seeded 3195
13:45:27 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 3229 elements
13:45:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:27 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0722 (max)
13:45:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1527:               3229 active elements
13:45:27 DEBUG   opendrift.models.basemodel:1538:               59.10235657255399 <- latitude  -> 59.185395562139185
13:45:27 DEBUG   opendrift.models.basemodel:1543:               10.933329615510205 <- longitude -> 11.029804089082797
13:45:27 DEBUG   opendrift.models.basemodel:1548:               -13.752182751276555   <- z ->   0.0
13:45:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:836: Lifting 255 elements to seafloor.
13:45:27 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:27 INFO    opendrift.models.basemodel:2882: 2023-09-02 05:03:54.338376 - step 93 of 216 - 3229 active elements (0 deactivated)
13:45:27 DEBUG   opendrift.models.basemodel:2888: 6771 elements scheduled.
13:45:27 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 3229 elements
13:45:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:27 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:27 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 3229 elements
13:45:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:28 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:28 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 06:00:00)
13:45:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:28 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1758 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1758 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1758 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1758 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1758 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2431 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2431 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2431 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2431 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2431 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1690 elements, expanding data 1
13:45:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:28 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.93) and
                      after (2023-09-02 06:00:00, weight 0.07) in time
13:45:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.066680951907614 and -58.97020645652576 degrees.
13:45:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.066680951907614 and -58.97020645652576 degrees.
13:45:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:28 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:28 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:28 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.684076 (min) 1.24644 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.1467 (min) 0.799491 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000102242 (min) 0.000936083 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.98739 (min) 9.83647 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.47368 (min) 5.06751 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0722 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1527:               3229 active elements
13:45:28 DEBUG   opendrift.models.basemodel:1538:               59.10235657255399 <- latitude  -> 59.185395562139185
13:45:28 DEBUG   opendrift.models.basemodel:1543:               10.933329615510205 <- longitude -> 11.029804089082797
13:45:28 DEBUG   opendrift.models.basemodel:1548:               -13.752182751276555   <- z ->   0.0
13:45:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:28 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:28 DEBUG   opendrift.models.physics_methods:1049:    min: 0.014834, mean: 2.755583, max: 8.637047
13:45:28 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.014834, mean: 2.755583, max: 8.637047
13:45:28 DEBUG   opendrift.models.basemodel:813: 442 elements hit coastline, moving back to water
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:45:28 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:28 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:28 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 3229 elements above 0.100m with wind-sheared ocean current (0.002149 m/s - 0.132147 m/s)
13:45:28 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:28 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:28 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09231071127708435
13:45:28 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:28 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:28 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:28 DEBUG   opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 262 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 253 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 236 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 232 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:28 DEBUG   opendrift.models.oceandrift:582: 186 elements penetrated seafloor, lifting up
13:45:28 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:28 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:28 DEBUG   opendrift.models.basemodel:2945: 3229 active elements (0 deactivated)
13:45:28 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6771, already seeded 3229
13:45:28 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 3264 elements
13:45:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:28 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0195 (max)
13:45:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1527:               3264 active elements
13:45:28 DEBUG   opendrift.models.basemodel:1538:               59.10246115822097 <- latitude  -> 59.18530993651031
13:45:28 DEBUG   opendrift.models.basemodel:1543:               10.933087194744287 <- longitude -> 11.028835526311658
13:45:28 DEBUG   opendrift.models.basemodel:1548:               -14.878877868652344   <- z ->   0.0
13:45:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:836: Lifting 285 elements to seafloor.
13:45:28 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:28 INFO    opendrift.models.basemodel:2882: 2023-09-02 05:13:54.338376 - step 94 of 216 - 3264 active elements (0 deactivated)
13:45:28 DEBUG   opendrift.models.basemodel:2888: 6736 elements scheduled.
13:45:28 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 3264 elements
13:45:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:28 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:28 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 3264 elements
13:45:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:29 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:29 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:29 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:29 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:29 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:29 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:29 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 06:00:00)
13:45:29 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:29 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1804 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1804 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1804 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1804 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1804 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2464 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 938 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2464 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 938 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2464 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 938 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2464 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 938 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2464 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 938 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1729 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:29 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.77) and
                      after (2023-09-02 06:00:00, weight 0.23) in time
13:45:29 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06692336320921 and -58.971175020721475 degrees.
13:45:29 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06692336320921 and -58.971175020721475 degrees.
13:45:29 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:29 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:29 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:29 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:29 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:29 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.814793 (min) 1.3818 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05586 (min) 0.705013 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.24499e-05 (min) 0.000680113 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.80937 (min) 7.55568 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.23213 (min) 4.54627 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0195 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1527:               3264 active elements
13:45:29 DEBUG   opendrift.models.basemodel:1538:               59.10246115822097 <- latitude  -> 59.18530993651031
13:45:29 DEBUG   opendrift.models.basemodel:1543:               10.933087194744287 <- longitude -> 11.028835526311658
13:45:29 DEBUG   opendrift.models.basemodel:1548:               -14.878877868652344   <- z ->   0.0
13:45:29 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:29 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:29 DEBUG   opendrift.models.physics_methods:1049:    min: 0.060751, mean: 2.763642, max: 7.191689
13:45:29 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.060751, mean: 2.763642, max: 7.191689
13:45:29 DEBUG   opendrift.models.basemodel:813: 448 elements hit coastline, moving back to water
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:45:29 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:29 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:29 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3264 elements above 0.100m with wind-sheared ocean current (0.006924 m/s - 0.151348 m/s)
13:45:29 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:29 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:29 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06400174253900527
13:45:29 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:29 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:29 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:29 DEBUG   opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 250 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 227 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 207 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 203 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:29 DEBUG   opendrift.models.oceandrift:582: 200 elements penetrated seafloor, lifting up
13:45:29 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:29 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:29 DEBUG   opendrift.models.basemodel:2945: 3264 active elements (0 deactivated)
13:45:29 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6736, already seeded 3264
13:45:29 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:29 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:29 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:29 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1253: Data needed for 3299 elements
13:45:29 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:29 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:29 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:29 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:29 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:29 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:29 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:29 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0217 (max)
13:45:29 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1527:               3299 active elements
13:45:29 DEBUG   opendrift.models.basemodel:1538:               59.103774411228656 <- latitude  -> 59.18801084455391
13:45:29 DEBUG   opendrift.models.basemodel:1543:               10.934619301255513 <- longitude -> 11.028149219993196
13:45:29 DEBUG   opendrift.models.basemodel:1548:               -14.046109199523926   <- z ->   0.0
13:45:29 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:836: Lifting 252 elements to seafloor.
13:45:29 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:29 INFO    opendrift.models.basemodel:2882: 2023-09-02 05:23:54.338376 - step 95 of 216 - 3299 active elements (0 deactivated)
13:45:29 DEBUG   opendrift.models.basemodel:2888: 6701 elements scheduled.
13:45:29 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:29 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:29 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:29 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1253: Data needed for 3299 elements
13:45:29 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:29 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:29 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:29 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:29 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:29 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:29 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:29 DEBUG   opendrift.models.basemodel:1253: Data needed for 3299 elements
13:45:29 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:29 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:30 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:30 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 06:00:00)
13:45:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:30 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 943 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1762 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:30 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.60) and
                      after (2023-09-02 06:00:00, weight 0.40) in time
13:45:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06539127018603 and -58.971861337473534 degrees.
13:45:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06539127018603 and -58.971861337473534 degrees.
13:45:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:30 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:30 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:30 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.735225 (min) 1.16134 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03616 (min) 0.695032 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.54181e-05 (min) 0.000701134 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.95315 (min) 7.91799 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.6287 (min) 6.00198 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0217 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1527:               3299 active elements
13:45:30 DEBUG   opendrift.models.basemodel:1538:               59.103774411228656 <- latitude  -> 59.18801084455391
13:45:30 DEBUG   opendrift.models.basemodel:1543:               10.934619301255513 <- longitude -> 11.028149219993196
13:45:30 DEBUG   opendrift.models.basemodel:1548:               -14.046109199523926   <- z ->   0.0
13:45:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:30 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:30 DEBUG   opendrift.models.physics_methods:1049:    min: 0.029440, mean: 2.808365, max: 9.115405
13:45:30 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.029440, mean: 2.808365, max: 9.115405
13:45:30 DEBUG   opendrift.models.basemodel:813: 432 elements hit coastline, moving back to water
13:45:30 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:30 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:30 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:30 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 3299 elements above 0.100m with wind-sheared ocean current (0.003076 m/s - 0.126620 m/s)
13:45:30 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:30 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:30 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10281853581150054
13:45:30 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:30 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:30 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:30 DEBUG   opendrift.models.oceandrift:582: 360 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 247 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 242 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 234 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 227 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:30 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:30 DEBUG   opendrift.models.basemodel:2945: 3299 active elements (0 deactivated)
13:45:30 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6701, already seeded 3299
13:45:30 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 3334 elements
13:45:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:30 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0549 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1527:               3334 active elements
13:45:30 DEBUG   opendrift.models.basemodel:1538:               59.10503358265742 <- latitude  -> 59.18560251645856
13:45:30 DEBUG   opendrift.models.basemodel:1543:               10.933167557669165 <- longitude -> 11.030141421508391
13:45:30 DEBUG   opendrift.models.basemodel:1548:               -14.069528579711914   <- z ->   0.0
13:45:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 293 elements to seafloor.
13:45:30 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:30 INFO    opendrift.models.basemodel:2882: 2023-09-02 05:33:54.338376 - step 96 of 216 - 3334 active elements (0 deactivated)
13:45:30 DEBUG   opendrift.models.basemodel:2888: 6666 elements scheduled.
13:45:30 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 3334 elements
13:45:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 3334 elements
13:45:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:30 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:30 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 06:00:00)
13:45:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:30 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 107 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 1
13:45:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
13:45:30 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.43) and
                      after (2023-09-02 06:00:00, weight 0.57) in time
13:45:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06684300795172 and -58.96986913737896 degrees.
13:45:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06684300795172 and -58.96986913737896 degrees.
13:45:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:30 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:30 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:30 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.789073 (min) 1.11397 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03854 (min) 0.794875 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.29312e-05 (min) 0.000679153 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.07646 (min) 7.60588 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.24753 (min) 4.56992 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0549 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1527:               3334 active elements
13:45:30 DEBUG   opendrift.models.basemodel:1538:               59.10503358265742 <- latitude  -> 59.18560251645856
13:45:30 DEBUG   opendrift.models.basemodel:1543:               10.933167557669165 <- longitude -> 11.030141421508391
13:45:30 DEBUG   opendrift.models.basemodel:1548:               -14.069528579711914   <- z ->   0.0
13:45:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:30 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:30 DEBUG   opendrift.models.physics_methods:1049:    min: 0.032413, mean: 2.881375, max: 8.385253
13:45:30 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.032413, mean: 2.881375, max: 8.385253
13:45:30 DEBUG   opendrift.models.basemodel:813: 453 elements hit coastline, moving back to water
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:45:30 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:30 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:30 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3334 elements above 0.100m with wind-sheared ocean current (0.013463 m/s - 0.168098 m/s)
13:45:30 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:30 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:30 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08700716092975616
13:45:30 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:30 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:30 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:30 DEBUG   opendrift.models.oceandrift:582: 401 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 237 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 263 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 244 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 199 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:30 DEBUG   opendrift.models.oceandrift:582: 182 elements penetrated seafloor, lifting up
13:45:30 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:30 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:30 DEBUG   opendrift.models.basemodel:2945: 3334 active elements (0 deactivated)
13:45:30 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6666, already seeded 3334
13:45:30 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 3368 elements
13:45:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:30 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0864 (max)
13:45:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1527:               3368 active elements
13:45:30 DEBUG   opendrift.models.basemodel:1538:               59.104692379614335 <- latitude  -> 59.18560251645856
13:45:30 DEBUG   opendrift.models.basemodel:1543:               10.932763318532855 <- longitude -> 11.028376019004627
13:45:30 DEBUG   opendrift.models.basemodel:1548:               -14.948601069608035   <- z ->   0.0
13:45:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:836: Lifting 235 elements to seafloor.
13:45:30 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:30 INFO    opendrift.models.basemodel:2882: 2023-09-02 05:43:54.338376 - step 97 of 216 - 3368 active elements (0 deactivated)
13:45:30 DEBUG   opendrift.models.basemodel:2888: 6632 elements scheduled.
13:45:30 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 3368 elements
13:45:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 3368 elements
13:45:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:31 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:31 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 06:00:00)
13:45:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:31 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1896 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1896 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1896 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1896 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1896 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2539 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2539 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2539 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2539 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2539 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1008 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1818 elements, expanding data 1
13:45:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:31 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.27) and
                      after (2023-09-02 06:00:00, weight 0.73) in time
13:45:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06724725834905 and -58.97163454098121 degrees.
13:45:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06724725834905 and -58.97163454098121 degrees.
13:45:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:31 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:31 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:31 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.785886 (min) 1.11288 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0494 (min) 0.819184 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.83923e-05 (min) 0.000799588 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.16333 (min) 7.48567 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.71954 (min) 4.73232 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0864 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1527:               3368 active elements
13:45:31 DEBUG   opendrift.models.basemodel:1538:               59.104692379614335 <- latitude  -> 59.18560251645856
13:45:31 DEBUG   opendrift.models.basemodel:1543:               10.932763318532855 <- longitude -> 11.028376019004627
13:45:31 DEBUG   opendrift.models.basemodel:1548:               -14.948601069608035   <- z ->   0.0
13:45:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:31 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:31 DEBUG   opendrift.models.physics_methods:1049:    min: 0.034356, mean: 2.943872, max: 9.123988
13:45:31 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.034356, mean: 2.943872, max: 9.123988
13:45:31 DEBUG   opendrift.models.basemodel:813: 449 elements hit coastline, moving back to water
13:45:31 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:31 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:31 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:31 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3368 elements above 0.100m with wind-sheared ocean current (0.002021 m/s - 0.157638 m/s)
13:45:31 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:31 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:31 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10301225938756942
13:45:31 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:31 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:31 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:31 DEBUG   opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 259 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 218 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 239 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 208 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 210 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:31 DEBUG   opendrift.models.oceandrift:582: 211 elements penetrated seafloor, lifting up
13:45:31 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:31 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:31 DEBUG   opendrift.models.basemodel:2945: 3368 active elements (0 deactivated)
13:45:31 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6632, already seeded 3368
13:45:31 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 3403 elements
13:45:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:31 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.046 (max)
13:45:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1527:               3403 active elements
13:45:31 DEBUG   opendrift.models.basemodel:1538:               59.10566039623086 <- latitude  -> 59.18530993651031
13:45:31 DEBUG   opendrift.models.basemodel:1543:               10.934039827578708 <- longitude -> 11.027377840677115
13:45:31 DEBUG   opendrift.models.basemodel:1548:               -13.744375228881836   <- z ->   0.0
13:45:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:836: Lifting 269 elements to seafloor.
13:45:31 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:31 INFO    opendrift.models.basemodel:2882: 2023-09-02 05:53:54.338376 - step 98 of 216 - 3403 active elements (0 deactivated)
13:45:31 DEBUG   opendrift.models.basemodel:2888: 6597 elements scheduled.
13:45:31 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 3403 elements
13:45:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:31 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:31 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 3403 elements
13:45:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 05:00:00 (before)
                2023-09-02 06:00:00 (after)
13:45:32 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:32 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:32 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 06:00:00)
13:45:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 05:00:00) in space  (linearNDFast)
13:45:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:32 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2558 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 974 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2558 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 974 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2558 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 974 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2558 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 974 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2558 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 974 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1813 elements, expanding data 1
13:45:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:32 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 05:00:00, weight 0.10) and
                      after (2023-09-02 06:00:00, weight 0.90) in time
13:45:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06597073427108 and -58.972632703210856 degrees.
13:45:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06597073427108 and -58.972632703210856 degrees.
13:45:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:32 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:32 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:32 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.81326 (min) 1.0997 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.2497 (min) 0.781428 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.18888e-05 (min) 0.000843566 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.03647 (min) 10.1364 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.62748 (min) 6.72892 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.046 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1527:               3403 active elements
13:45:32 DEBUG   opendrift.models.basemodel:1538:               59.10566039623086 <- latitude  -> 59.18530993651031
13:45:32 DEBUG   opendrift.models.basemodel:1543:               10.934039827578708 <- longitude -> 11.027377840677115
13:45:32 DEBUG   opendrift.models.basemodel:1548:               -13.744375228881836   <- z ->   0.0
13:45:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:32 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:32 DEBUG   opendrift.models.physics_methods:1049:    min: 0.063425, mean: 2.997274, max: 9.533452
13:45:32 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.063425, mean: 2.997274, max: 9.533452
13:45:32 DEBUG   opendrift.models.basemodel:813: 473 elements hit coastline, moving back to water
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:45:32 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:32 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:32 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3403 elements above 0.100m with wind-sheared ocean current (0.006398 m/s - 0.127570 m/s)
13:45:32 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:32 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:32 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11246528134019851
13:45:32 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:32 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:32 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:32 DEBUG   opendrift.models.oceandrift:582: 402 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 312 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 249 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 251 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 241 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 214 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 202 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 188 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:32 DEBUG   opendrift.models.oceandrift:582: 225 elements penetrated seafloor, lifting up
13:45:32 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:32 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:32 DEBUG   opendrift.models.basemodel:2945: 3403 active elements (0 deactivated)
13:45:32 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6597, already seeded 3403
13:45:32 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 3438 elements
13:45:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:32 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0559 (max)
13:45:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1527:               3438 active elements
13:45:32 DEBUG   opendrift.models.basemodel:1538:               59.105586788647315 <- latitude  -> 59.18530993651032
13:45:32 DEBUG   opendrift.models.basemodel:1543:               10.934187390394056 <- longitude -> 11.026398589210812
13:45:32 DEBUG   opendrift.models.basemodel:1548:               -15.045955657958984   <- z ->   0.0
13:45:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:836: Lifting 281 elements to seafloor.
13:45:32 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:32 INFO    opendrift.models.basemodel:2882: 2023-09-02 06:03:54.338376 - step 99 of 216 - 3438 active elements (0 deactivated)
13:45:32 DEBUG   opendrift.models.basemodel:2888: 6562 elements scheduled.
13:45:32 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 3438 elements
13:45:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:32 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:32 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 3438 elements
13:45:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:33 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:33 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:33 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 07:00:00)
13:45:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:33 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1916 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2606 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2606 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2606 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2606 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2606 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2606 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1836 elements, expanding data 1
13:45:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:33 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.93) and
                      after (2023-09-02 07:00:00, weight 0.07) in time
13:45:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06582317506965 and -58.973611971669406 degrees.
13:45:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06582317506965 and -58.973611971669406 degrees.
13:45:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:33 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:33 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:33 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.781208 (min) 1.30036 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.989666 (min) 0.949788 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.70587e-05 (min) 0.000697487 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.41257 (min) 7.6511 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     y_wind: -12.0098 (min) 5.23996 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0559 (max)
13:45:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:33 DEBUG   opendrift.models.basemodel:1527:               3438 active elements
13:45:33 DEBUG   opendrift.models.basemodel:1538:               59.105586788647315 <- latitude  -> 59.18530993651032
13:45:33 DEBUG   opendrift.models.basemodel:1543:               10.934187390394056 <- longitude -> 11.026398589210812
13:45:33 DEBUG   opendrift.models.basemodel:1548:               -15.045955657958984   <- z ->   0.0
13:45:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:33 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:33 DEBUG   opendrift.models.physics_methods:1049:    min: 0.106651, mean: 3.084926, max: 10.488643
13:45:33 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.106651, mean: 3.084926, max: 10.488643
13:45:33 DEBUG   opendrift.models.basemodel:813: 483 elements hit coastline, moving back to water
13:45:33 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:45:33 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:33 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:33 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 3438 elements above 0.100m with wind-sheared ocean current (0.011738 m/s - 0.128618 m/s)
13:45:33 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:33 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:34 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13613004844911572
13:45:34 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:34 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:34 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:34 DEBUG   opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 295 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 271 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 271 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 245 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 251 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 235 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 245 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 233 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 24 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
13:45:34 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:34 DEBUG   opendrift.models.basemodel:2945: 3438 active elements (0 deactivated)
13:45:34 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6562, already seeded 3438
13:45:34 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 3472 elements
13:45:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:34 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0559 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1527:               3472 active elements
13:45:34 DEBUG   opendrift.models.basemodel:1538:               59.10548623978045 <- latitude  -> 59.18654678599509
13:45:34 DEBUG   opendrift.models.basemodel:1543:               10.936245687767844 <- longitude -> 11.02673337827505
13:45:34 DEBUG   opendrift.models.basemodel:1548:               -15.045955657958984   <- z ->   0.0
13:45:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 238 elements to seafloor.
13:45:34 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:34 INFO    opendrift.models.basemodel:2882: 2023-09-02 06:13:54.338376 - step 100 of 216 - 3472 active elements (0 deactivated)
13:45:34 DEBUG   opendrift.models.basemodel:2888: 6528 elements scheduled.
13:45:34 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 3472 elements
13:45:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:34 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 3472 elements
13:45:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:34 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:34 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 07:00:00)
13:45:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:34 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1937 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1937 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1937 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1937 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1937 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1937 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2659 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2659 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2659 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2659 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2659 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2659 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1006 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1859 elements, expanding data 1
13:45:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:34 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.77) and
                      after (2023-09-02 07:00:00, weight 0.23) in time
13:45:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06376487899214 and -58.97327716337007 degrees.
13:45:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06376487899214 and -58.97327716337007 degrees.
13:45:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:34 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:34 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:34 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.776669 (min) 1.22827 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.09179 (min) 0.733972 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.19101e-05 (min) 0.00073329 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.23241 (min) 7.25604 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.8121 (min) 3.74031 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0559 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1527:               3472 active elements
13:45:34 DEBUG   opendrift.models.basemodel:1538:               59.10548623978045 <- latitude  -> 59.18654678599509
13:45:34 DEBUG   opendrift.models.basemodel:1543:               10.936245687767844 <- longitude -> 11.02673337827505
13:45:34 DEBUG   opendrift.models.basemodel:1548:               -15.045955657958984   <- z ->   0.0
13:45:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:34 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:34 DEBUG   opendrift.models.physics_methods:1049:    min: 0.050799, mean: 3.125699, max: 9.859677
13:45:34 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.050799, mean: 3.125699, max: 9.859677
13:45:34 DEBUG   opendrift.models.basemodel:813: 506 elements hit coastline, moving back to water
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:45:34 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:34 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:34 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3472 elements above 0.100m with wind-sheared ocean current (0.013411 m/s - 0.117540 m/s)
13:45:34 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:34 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:34 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12029357645519256
13:45:34 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:34 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:34 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:34 DEBUG   opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 294 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 250 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 228 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:34 DEBUG   opendrift.models.oceandrift:582: 222 elements penetrated seafloor, lifting up
13:45:34 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:34 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:34 DEBUG   opendrift.models.basemodel:2945: 3472 active elements (0 deactivated)
13:45:34 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6528, already seeded 3472
13:45:34 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 3507 elements
13:45:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:34 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0559 (max)
13:45:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1527:               3507 active elements
13:45:34 DEBUG   opendrift.models.basemodel:1538:               59.10430869407719 <- latitude  -> 59.18599447699002
13:45:34 DEBUG   opendrift.models.basemodel:1543:               10.937225001407471 <- longitude -> 11.03005299823796
13:45:34 DEBUG   opendrift.models.basemodel:1548:               -15.035955657958985   <- z ->   0.0
13:45:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:836: Lifting 278 elements to seafloor.
13:45:34 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:34 INFO    opendrift.models.basemodel:2882: 2023-09-02 06:23:54.338376 - step 101 of 216 - 3507 active elements (0 deactivated)
13:45:34 DEBUG   opendrift.models.basemodel:2888: 6493 elements scheduled.
13:45:34 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 3507 elements
13:45:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:34 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:34 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 3507 elements
13:45:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:35 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:35 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 07:00:00)
13:45:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:35 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2666 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2666 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2666 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2666 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2666 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2666 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1049 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1919 elements, expanding data 1
13:45:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:35 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.60) and
                      after (2023-09-02 07:00:00, weight 0.40) in time
13:45:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06278555757131 and -58.96995756676583 degrees.
13:45:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06278555757131 and -58.96995756676583 degrees.
13:45:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:35 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:35 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:35 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.741823 (min) 1.20075 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.27113 (min) 0.859885 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.51222e-05 (min) 0.000651938 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.47183 (min) 6.62171 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1741 (min) 3.81165 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0559 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1527:               3507 active elements
13:45:35 DEBUG   opendrift.models.basemodel:1538:               59.10430869407719 <- latitude  -> 59.18599447699002
13:45:35 DEBUG   opendrift.models.basemodel:1543:               10.937225001407471 <- longitude -> 11.03005299823796
13:45:35 DEBUG   opendrift.models.basemodel:1548:               -15.035955657958985   <- z ->   0.0
13:45:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:35 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:35 DEBUG   opendrift.models.physics_methods:1049:    min: 0.026309, mean: 3.232292, max: 8.826603
13:45:35 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.026309, mean: 3.232292, max: 8.826603
13:45:35 DEBUG   opendrift.models.basemodel:813: 509 elements hit coastline, moving back to water
13:45:35 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:35 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:35 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3507 elements above 0.100m with wind-sheared ocean current (0.003305 m/s - 0.182004 m/s)
13:45:35 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:35 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:35 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09640685482938766
13:45:35 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:35 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:35 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:35 DEBUG   opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 264 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 221 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 245 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 250 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:45:35 DEBUG   opendrift.models.oceandrift:582: 239 elements penetrated seafloor, lifting up
13:45:35 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:35 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:35 DEBUG   opendrift.models.basemodel:2945: 3507 active elements (0 deactivated)
13:45:35 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6493, already seeded 3507
13:45:35 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 3542 elements
13:45:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:35 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9904 (max)
13:45:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1527:               3542 active elements
13:45:35 DEBUG   opendrift.models.basemodel:1538:               59.10567208167872 <- latitude  -> 59.18787109684002
13:45:35 DEBUG   opendrift.models.basemodel:1543:               10.937243043551561 <- longitude -> 11.028771230864315
13:45:35 DEBUG   opendrift.models.basemodel:1548:               -14.362504234313965   <- z ->   0.0
13:45:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:836: Lifting 266 elements to seafloor.
13:45:35 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:35 INFO    opendrift.models.basemodel:2882: 2023-09-02 06:33:54.338376 - step 102 of 216 - 3542 active elements (0 deactivated)
13:45:35 DEBUG   opendrift.models.basemodel:2888: 6458 elements scheduled.
13:45:35 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 3542 elements
13:45:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:35 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:35 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 3542 elements
13:45:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:36 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:36 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:36 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 07:00:00)
13:45:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:36 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2711 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2711 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2711 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2711 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2711 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1045 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1950 elements, expanding data 1
13:45:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:36 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.43) and
                      after (2023-09-02 07:00:00, weight 0.57) in time
13:45:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06276752284406 and -58.97123931873314 degrees.
13:45:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06276752284406 and -58.97123931873314 degrees.
13:45:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:36 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:36 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:36 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.751768 (min) 1.29037 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.17696 (min) 0.712304 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.3933e-05 (min) 0.000801845 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.57257 (min) 7.15799 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.158 (min) 3.86897 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.9904 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1527:               3542 active elements
13:45:36 DEBUG   opendrift.models.basemodel:1538:               59.10567208167872 <- latitude  -> 59.18787109684002
13:45:36 DEBUG   opendrift.models.basemodel:1543:               10.937243043551561 <- longitude -> 11.028771230864315
13:45:36 DEBUG   opendrift.models.basemodel:1548:               -14.362504234313965   <- z ->   0.0
13:45:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:36 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:36 DEBUG   opendrift.models.physics_methods:1049:    min: 0.009736, mean: 3.272852, max: 9.129683
13:45:36 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.009736, mean: 3.272852, max: 9.129683
13:45:36 DEBUG   opendrift.models.basemodel:813: 485 elements hit coastline, moving back to water
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:45:36 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:36 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:36 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3542 elements above 0.100m with wind-sheared ocean current (0.006124 m/s - 0.128918 m/s)
13:45:36 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:36 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:36 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10314090526016234
13:45:36 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:36 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:36 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:36 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 305 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 279 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 248 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 252 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 257 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 25 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
13:45:36 DEBUG   opendrift.models.oceandrift:582: 238 elements penetrated seafloor, lifting up
13:45:36 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:36 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:36 DEBUG   opendrift.models.basemodel:2945: 3542 active elements (0 deactivated)
13:45:36 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6458, already seeded 3542
13:45:36 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 3577 elements
13:45:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:36 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0171 (max)
13:45:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1527:               3577 active elements
13:45:36 DEBUG   opendrift.models.basemodel:1538:               59.10567210368531 <- latitude  -> 59.18688569327845
13:45:36 DEBUG   opendrift.models.basemodel:1543:               10.936096564375624 <- longitude -> 11.027718894533358
13:45:36 DEBUG   opendrift.models.basemodel:1548:               -14.557205889802724   <- z ->   0.0
13:45:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:836: Lifting 258 elements to seafloor.
13:45:36 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:36 INFO    opendrift.models.basemodel:2882: 2023-09-02 06:43:54.338376 - step 103 of 216 - 3577 active elements (0 deactivated)
13:45:36 DEBUG   opendrift.models.basemodel:2888: 6423 elements scheduled.
13:45:36 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 3577 elements
13:45:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:36 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:36 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 3577 elements
13:45:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:37 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:37 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:37 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 07:00:00)
13:45:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:37 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2072 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2072 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2072 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2072 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2072 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2744 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1073 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2744 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1073 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2744 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1073 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2744 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1073 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2744 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1073 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1995 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:37 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.27) and
                      after (2023-09-02 07:00:00, weight 0.73) in time
13:45:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06391400971191 and -58.97229165861445 degrees.
13:45:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06391400971191 and -58.97229165861445 degrees.
13:45:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:37 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:37 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:37 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -1.03421 (min) 1.0927 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.969132 (min) 0.826689 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.88609e-05 (min) 0.000748144 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.38467 (min) 6.11451 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     y_wind: -11.0568 (min) 3.36271 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0171 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1527:               3577 active elements
13:45:37 DEBUG   opendrift.models.basemodel:1538:               59.10567210368531 <- latitude  -> 59.18688569327845
13:45:37 DEBUG   opendrift.models.basemodel:1543:               10.936096564375624 <- longitude -> 11.027718894533358
13:45:37 DEBUG   opendrift.models.basemodel:1548:               -14.557205889802724   <- z ->   0.0
13:45:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:37 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:37 DEBUG   opendrift.models.physics_methods:1049:    min: 0.072748, mean: 3.353824, max: 9.688002
13:45:37 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.072748, mean: 3.353824, max: 9.688002
13:45:37 DEBUG   opendrift.models.basemodel:813: 489 elements hit coastline, moving back to water
13:45:37 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:37 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:37 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:37 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3577 elements above 0.100m with wind-sheared ocean current (0.004899 m/s - 0.159061 m/s)
13:45:37 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:37 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:37 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11614112991960525
13:45:37 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:37 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:37 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:37 DEBUG   opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 255 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 259 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 268 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 252 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:37 DEBUG   opendrift.models.oceandrift:582: 243 elements penetrated seafloor, lifting up
13:45:37 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:37 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:37 DEBUG   opendrift.models.basemodel:2945: 3577 active elements (0 deactivated)
13:45:37 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6423, already seeded 3577
13:45:37 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 3611 elements
13:45:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:37 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.998 (max)
13:45:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1527:               3611 active elements
13:45:37 DEBUG   opendrift.models.basemodel:1538:               59.10370608242733 <- latitude  -> 59.18833488383163
13:45:37 DEBUG   opendrift.models.basemodel:1543:               10.93642291466808 <- longitude -> 11.026312904767083
13:45:37 DEBUG   opendrift.models.basemodel:1548:               -14.373414331818365   <- z ->   0.0
13:45:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:836: Lifting 274 elements to seafloor.
13:45:37 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:37 INFO    opendrift.models.basemodel:2882: 2023-09-02 06:53:54.338376 - step 104 of 216 - 3611 active elements (0 deactivated)
13:45:37 DEBUG   opendrift.models.basemodel:2888: 6389 elements scheduled.
13:45:37 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 3611 elements
13:45:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:37 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:37 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 3611 elements
13:45:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 06:00:00 (before)
                2023-09-02 07:00:00 (after)
13:45:38 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:38 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:38 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 07:00:00)
13:45:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 06:00:00) in space  (linearNDFast)
13:45:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:38 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2095 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2095 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2095 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2095 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2095 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2769 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1086 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2769 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1086 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2769 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1086 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2769 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1086 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2769 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1086 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2015 elements, expanding data 1
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:38 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 06:00:00, weight 0.10) and
                      after (2023-09-02 07:00:00, weight 0.90) in time
13:45:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06358764436622 and -58.973697638112796 degrees.
13:45:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06358764436622 and -58.973697638112796 degrees.
13:45:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:38 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:38 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:38 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.802366 (min) 1.24216 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0685 (min) 0.778422 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.49711e-05 (min) 0.000745194 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.25735 (min) 6.29193 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.7544 (min) 4.15387 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 14.998 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1527:               3611 active elements
13:45:38 DEBUG   opendrift.models.basemodel:1538:               59.10370608242733 <- latitude  -> 59.18833488383163
13:45:38 DEBUG   opendrift.models.basemodel:1543:               10.93642291466808 <- longitude -> 11.026312904767083
13:45:38 DEBUG   opendrift.models.basemodel:1548:               -14.373414331818365   <- z ->   0.0
13:45:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:38 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:38 DEBUG   opendrift.models.physics_methods:1049:    min: 0.153703, mean: 3.499827, max: 9.617742
13:45:38 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.153703, mean: 3.499827, max: 9.617742
13:45:38 DEBUG   opendrift.models.basemodel:813: 524 elements hit coastline, moving back to water
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:45:38 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:38 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:38 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 3611 elements above 0.100m with wind-sheared ocean current (0.006284 m/s - 0.144605 m/s)
13:45:38 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:38 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:38 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11446273074920653
13:45:38 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:38 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:38 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:38 DEBUG   opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 322 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 28 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 250 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:38 DEBUG   opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
13:45:38 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:38 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:38 DEBUG   opendrift.models.basemodel:2945: 3611 active elements (0 deactivated)
13:45:38 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6389, already seeded 3611
13:45:38 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 3646 elements
13:45:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:38 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0262 (max)
13:45:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1527:               3646 active elements
13:45:38 DEBUG   opendrift.models.basemodel:1538:               59.10356945314818 <- latitude  -> 59.186533141855456
13:45:38 DEBUG   opendrift.models.basemodel:1543:               10.934025897132873 <- longitude -> 11.027089949198514
13:45:38 DEBUG   opendrift.models.basemodel:1548:               -13.995330085754395   <- z ->   0.0
13:45:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:836: Lifting 290 elements to seafloor.
13:45:38 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:38 INFO    opendrift.models.basemodel:2882: 2023-09-02 07:03:54.338376 - step 105 of 216 - 3646 active elements (0 deactivated)
13:45:38 DEBUG   opendrift.models.basemodel:2888: 6354 elements scheduled.
13:45:38 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 3646 elements
13:45:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:38 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:38 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 3646 elements
13:45:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:39 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:39 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:39 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 08:00:00)
13:45:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:39 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2099 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2784 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2784 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2784 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2784 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2784 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1115 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2002 elements, expanding data 1
13:45:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
13:45:39 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.93) and
                      after (2023-09-02 08:00:00, weight 0.07) in time
13:45:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06598466325114 and -58.97292061352188 degrees.
13:45:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06598466325114 and -58.97292061352188 degrees.
13:45:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:39 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:39 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:39 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.717206 (min) 1.1035 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03942 (min) 0.80954 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.48476e-05 (min) 0.000713491 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.0283 (min) 6.71441 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.2181 (min) 3.33188 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0262 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1527:               3646 active elements
13:45:39 DEBUG   opendrift.models.basemodel:1538:               59.10356945314818 <- latitude  -> 59.186533141855456
13:45:39 DEBUG   opendrift.models.basemodel:1543:               10.934025897132873 <- longitude -> 11.027089949198514
13:45:39 DEBUG   opendrift.models.basemodel:1548:               -13.995330085754395   <- z ->   0.0
13:45:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:39 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:39 DEBUG   opendrift.models.physics_methods:1049:    min: 0.105140, mean: 3.533494, max: 9.529381
13:45:39 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.105140, mean: 3.533494, max: 9.529381
13:45:39 DEBUG   opendrift.models.basemodel:813: 515 elements hit coastline, moving back to water
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:45:39 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:39 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:39 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3646 elements above 0.100m with wind-sheared ocean current (0.012132 m/s - 0.149465 m/s)
13:45:39 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:39 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:39 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11236926259620665
13:45:39 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:39 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:39 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:39 DEBUG   opendrift.models.oceandrift:582: 458 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 272 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 259 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 273 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:39 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:45:39 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:39 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:39 DEBUG   opendrift.models.basemodel:2945: 3646 active elements (0 deactivated)
13:45:39 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6354, already seeded 3646
13:45:39 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 3681 elements
13:45:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:39 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0281 (max)
13:45:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1527:               3681 active elements
13:45:39 DEBUG   opendrift.models.basemodel:1538:               59.10468551136273 <- latitude  -> 59.186985230940564
13:45:39 DEBUG   opendrift.models.basemodel:1543:               10.935991215056402 <- longitude -> 11.028203343715992
13:45:39 DEBUG   opendrift.models.basemodel:1548:               -14.122786201990177   <- z ->   0.0
13:45:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:836: Lifting 237 elements to seafloor.
13:45:39 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:39 INFO    opendrift.models.basemodel:2882: 2023-09-02 07:13:54.338376 - step 106 of 216 - 3681 active elements (0 deactivated)
13:45:39 DEBUG   opendrift.models.basemodel:2888: 6319 elements scheduled.
13:45:39 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 3681 elements
13:45:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:39 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:39 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 3681 elements
13:45:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:40 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:40 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 08:00:00)
13:45:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:40 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2130 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2130 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2130 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2130 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2130 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2845 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2845 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2845 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2845 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2845 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2041 elements, expanding data 1
13:45:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
13:45:40 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.77) and
                      after (2023-09-02 08:00:00, weight 0.23) in time
13:45:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06401934926084 and -58.97180720275502 degrees.
13:45:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06401934926084 and -58.97180720275502 degrees.
13:45:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:40 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:40 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:40 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.776898 (min) 1.09098 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.04417 (min) 0.717968 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000106461 (min) 0.000673082 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.87022 (min) 7.30744 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     y_wind: -11.6797 (min) 3.77778 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0281 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1527:               3681 active elements
13:45:40 DEBUG   opendrift.models.basemodel:1538:               59.10468551136273 <- latitude  -> 59.186985230940564
13:45:40 DEBUG   opendrift.models.basemodel:1543:               10.935991215056402 <- longitude -> 11.028203343715992
13:45:40 DEBUG   opendrift.models.basemodel:1548:               -14.122786201990177   <- z ->   0.0
13:45:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:40 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:40 DEBUG   opendrift.models.physics_methods:1049:    min: 0.065764, mean: 3.556580, max: 10.410655
13:45:40 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.065764, mean: 3.556580, max: 10.410655
13:45:40 DEBUG   opendrift.models.basemodel:813: 510 elements hit coastline, moving back to water
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:40 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:40 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:40 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3681 elements above 0.100m with wind-sheared ocean current (0.003663 m/s - 0.191523 m/s)
13:45:40 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:40 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:40 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1341132575794029
13:45:40 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:40 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:40 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:40 DEBUG   opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 355 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 250 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 255 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 17 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 252 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:40 DEBUG   opendrift.models.oceandrift:582: 248 elements penetrated seafloor, lifting up
13:45:40 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:40 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:40 DEBUG   opendrift.models.basemodel:2945: 3681 active elements (0 deactivated)
13:45:40 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6319, already seeded 3681
13:45:40 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 3715 elements
13:45:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:40 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0468 (max)
13:45:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1527:               3715 active elements
13:45:40 DEBUG   opendrift.models.basemodel:1538:               59.104727278785155 <- latitude  -> 59.18721622276179
13:45:40 DEBUG   opendrift.models.basemodel:1543:               10.937425053117959 <- longitude -> 11.029059607043862
13:45:40 DEBUG   opendrift.models.basemodel:1548:               -14.382420539855957   <- z ->   0.0
13:45:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:836: Lifting 242 elements to seafloor.
13:45:40 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:40 INFO    opendrift.models.basemodel:2882: 2023-09-02 07:23:54.338376 - step 107 of 216 - 3715 active elements (0 deactivated)
13:45:40 DEBUG   opendrift.models.basemodel:2888: 6285 elements scheduled.
13:45:40 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 3715 elements
13:45:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:40 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:40 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 3715 elements
13:45:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:41 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:41 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:41 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 08:00:00)
13:45:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:41 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2145 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2145 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2145 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2145 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2145 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2890 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1118 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2890 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1118 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2890 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1118 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2890 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1118 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2890 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1118 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2055 elements, expanding data 1
13:45:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
13:45:41 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.60) and
                      after (2023-09-02 08:00:00, weight 0.40) in time
13:45:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06258551344023 and -58.970950944483576 degrees.
13:45:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06258551344023 and -58.970950944483576 degrees.
13:45:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:41 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:41 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:41 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.713761 (min) 1.28757 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.923414 (min) 0.776182 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000294058 (min) 0.000779751 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.6662 (min) 6.82214 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.8315 (min) 3.43245 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0468 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1527:               3715 active elements
13:45:41 DEBUG   opendrift.models.basemodel:1538:               59.104727278785155 <- latitude  -> 59.18721622276179
13:45:41 DEBUG   opendrift.models.basemodel:1543:               10.937425053117959 <- longitude -> 11.029059607043862
13:45:41 DEBUG   opendrift.models.basemodel:1548:               -14.373255729675293   <- z ->   0.0
13:45:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:41 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:41 DEBUG   opendrift.models.physics_methods:1049:    min: 0.054717, mean: 3.543637, max: 9.489232
13:45:41 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.054717, mean: 3.543637, max: 9.489232
13:45:41 DEBUG   opendrift.models.basemodel:813: 529 elements hit coastline, moving back to water
13:45:41 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:41 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:41 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:41 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3715 elements above 0.100m with wind-sheared ocean current (0.003220 m/s - 0.151860 m/s)
13:45:41 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:41 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:41 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11142440884740828
13:45:41 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:41 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:41 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:41 DEBUG   opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 293 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:41 DEBUG   opendrift.models.oceandrift:582: 284 elements penetrated seafloor, lifting up
13:45:41 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:41 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:41 DEBUG   opendrift.models.basemodel:2945: 3715 active elements (0 deactivated)
13:45:41 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6285, already seeded 3715
13:45:41 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 3750 elements
13:45:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:41 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1084 (max)
13:45:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1527:               3750 active elements
13:45:41 DEBUG   opendrift.models.basemodel:1538:               59.10535646804076 <- latitude  -> 59.18804680798759
13:45:41 DEBUG   opendrift.models.basemodel:1543:               10.936939792038867 <- longitude -> 11.029647395010276
13:45:41 DEBUG   opendrift.models.basemodel:1548:               -14.373255729675293   <- z ->   0.0
13:45:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:836: Lifting 269 elements to seafloor.
13:45:41 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:41 INFO    opendrift.models.basemodel:2882: 2023-09-02 07:33:54.338376 - step 108 of 216 - 3750 active elements (0 deactivated)
13:45:41 DEBUG   opendrift.models.basemodel:2888: 6250 elements scheduled.
13:45:41 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 3750 elements
13:45:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:41 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:41 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 3750 elements
13:45:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:42 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:42 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 08:00:00)
13:45:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:42 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2157 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2925 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1132 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2925 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1132 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2925 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1132 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2925 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1132 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2925 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1132 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 1
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:42 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.43) and
                      after (2023-09-02 08:00:00, weight 0.57) in time
13:45:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06307076805259 and -58.97036315389598 degrees.
13:45:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06307076805259 and -58.97036315389598 degrees.
13:45:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:42 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:42 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:42 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.866509 (min) 1.15522 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.945608 (min) 0.761822 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000238138 (min) 0.000692941 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.15196 (min) 7.83985 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.8082 (min) 3.30264 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1084 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1527:               3750 active elements
13:45:42 DEBUG   opendrift.models.basemodel:1538:               59.10535646804076 <- latitude  -> 59.18804680798759
13:45:42 DEBUG   opendrift.models.basemodel:1543:               10.936939792038867 <- longitude -> 11.029647395010276
13:45:42 DEBUG   opendrift.models.basemodel:1548:               -14.373255729675293   <- z ->   0.0
13:45:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:42 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:42 DEBUG   opendrift.models.physics_methods:1049:    min: 0.135437, mean: 3.559225, max: 9.736917
13:45:42 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.135437, mean: 3.559225, max: 9.736917
13:45:42 DEBUG   opendrift.models.basemodel:813: 520 elements hit coastline, moving back to water
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:45:42 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:42 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:42 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 3750 elements above 0.100m with wind-sheared ocean current (0.003158 m/s - 0.161323 m/s)
13:45:42 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:42 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:42 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11731687180383682
13:45:42 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:42 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:42 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:42 DEBUG   opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 254 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:42 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:42 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:42 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:42 DEBUG   opendrift.models.basemodel:2945: 3750 active elements (0 deactivated)
13:45:42 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6250, already seeded 3750
13:45:42 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 3785 elements
13:45:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:42 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0449 (max)
13:45:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1527:               3785 active elements
13:45:42 DEBUG   opendrift.models.basemodel:1538:               59.10531813151742 <- latitude  -> 59.18681332757483
13:45:42 DEBUG   opendrift.models.basemodel:1543:               10.932418120242113 <- longitude -> 11.03042563562597
13:45:42 DEBUG   opendrift.models.basemodel:1548:               -14.373254776000977   <- z ->   0.0
13:45:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:836: Lifting 242 elements to seafloor.
13:45:42 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:42 INFO    opendrift.models.basemodel:2882: 2023-09-02 07:43:54.338376 - step 109 of 216 - 3785 active elements (0 deactivated)
13:45:42 DEBUG   opendrift.models.basemodel:2888: 6215 elements scheduled.
13:45:42 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 3785 elements
13:45:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:42 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:42 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 3785 elements
13:45:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:43 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:43 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 08:00:00)
13:45:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:43 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 159 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 159 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 159 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 159 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2161 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 159 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2979 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1131 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2979 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1131 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2979 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1131 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2979 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1131 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2979 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1131 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2080 elements, expanding data 1
13:45:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:43 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.27) and
                      after (2023-09-02 08:00:00, weight 0.73) in time
13:45:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06759245337683 and -58.96958491434291 degrees.
13:45:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06759245337683 and -58.96958491434291 degrees.
13:45:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:43 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:43 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:43 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.767025 (min) 1.16493 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.10659 (min) 0.751588 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.30918e-05 (min) 0.000559206 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.82052 (min) 7.94132 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.96334 (min) 4.48444 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0449 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1527:               3785 active elements
13:45:43 DEBUG   opendrift.models.basemodel:1538:               59.10531813151742 <- latitude  -> 59.18681332757483
13:45:43 DEBUG   opendrift.models.basemodel:1543:               10.932418120242113 <- longitude -> 11.03042563562597
13:45:43 DEBUG   opendrift.models.basemodel:1548:               -14.373254776000977   <- z ->   0.0
13:45:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:43 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:43 DEBUG   opendrift.models.physics_methods:1049:    min: 0.117413, mean: 3.519576, max: 8.703072
13:45:43 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.117413, mean: 3.519576, max: 8.703072
13:45:43 DEBUG   opendrift.models.basemodel:813: 524 elements hit coastline, moving back to water
13:45:43 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:43 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:43 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:43 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 3785 elements above 0.100m with wind-sheared ocean current (0.006180 m/s - 0.192275 m/s)
13:45:43 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:43 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:43 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09372736954839705
13:45:43 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:43 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:43 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:43 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:43 DEBUG   opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
13:45:43 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:43 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:43 DEBUG   opendrift.models.basemodel:2945: 3785 active elements (0 deactivated)
13:45:43 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6215, already seeded 3785
13:45:43 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 3820 elements
13:45:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:43 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0706 (max)
13:45:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1527:               3820 active elements
13:45:43 DEBUG   opendrift.models.basemodel:1538:               59.1056784786865 <- latitude  -> 59.187141582226126
13:45:43 DEBUG   opendrift.models.basemodel:1543:               10.926554167462209 <- longitude -> 11.030393320691232
13:45:43 DEBUG   opendrift.models.basemodel:1548:               -14.373254776000977   <- z ->   0.0
13:45:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:836: Lifting 251 elements to seafloor.
13:45:43 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:43 INFO    opendrift.models.basemodel:2882: 2023-09-02 07:53:54.338376 - step 110 of 216 - 3820 active elements (0 deactivated)
13:45:43 DEBUG   opendrift.models.basemodel:2888: 6180 elements scheduled.
13:45:43 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 3820 elements
13:45:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:43 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:43 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 3820 elements
13:45:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 07:00:00 (before)
                2023-09-02 08:00:00 (after)
13:45:44 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:44 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:44 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 08:00:00)
13:45:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 07:00:00) in space  (linearNDFast)
13:45:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:44 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1164 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
13:45:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
13:45:44 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 07:00:00, weight 0.10) and
                      after (2023-09-02 08:00:00, weight 0.90) in time
13:45:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07345639661412 and -58.96961722428247 degrees.
13:45:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07345639661412 and -58.96961722428247 degrees.
13:45:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:44 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:44 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:44 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.753405 (min) 1.35305 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.06006 (min) 1.16608 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.00021255 (min) 0.00058689 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.89678 (min) 6.93288 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.3325 (min) 3.36305 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0706 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1527:               3820 active elements
13:45:44 DEBUG   opendrift.models.basemodel:1538:               59.1056784786865 <- latitude  -> 59.187141582226126
13:45:44 DEBUG   opendrift.models.basemodel:1543:               10.926554167462209 <- longitude -> 11.030393320691232
13:45:44 DEBUG   opendrift.models.basemodel:1548:               -14.373254776000977   <- z ->   0.0
13:45:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:44 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:44 DEBUG   opendrift.models.physics_methods:1049:    min: 0.039815, mean: 3.540817, max: 9.971451
13:45:44 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.039815, mean: 3.540817, max: 9.971451
13:45:44 DEBUG   opendrift.models.basemodel:813: 540 elements hit coastline, moving back to water
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:45:44 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:44 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:44 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 3820 elements above 0.100m with wind-sheared ocean current (0.000212 m/s - 0.142588 m/s)
13:45:44 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:44 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:44 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12303637390239715
13:45:44 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:44 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:44 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:44 DEBUG   opendrift.models.oceandrift:582: 443 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 355 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 254 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:44 DEBUG   opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
13:45:44 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:44 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:44 DEBUG   opendrift.models.basemodel:2945: 3820 active elements (0 deactivated)
13:45:44 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6180, already seeded 3820
13:45:44 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 3854 elements
13:45:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:44 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1233 (max)
13:45:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1527:               3854 active elements
13:45:44 DEBUG   opendrift.models.basemodel:1538:               59.10608417525904 <- latitude  -> 59.19068834285875
13:45:44 DEBUG   opendrift.models.basemodel:1543:               10.926498097983842 <- longitude -> 11.029809655896686
13:45:44 DEBUG   opendrift.models.basemodel:1548:               -14.363254776000977   <- z ->   0.0
13:45:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:836: Lifting 263 elements to seafloor.
13:45:44 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:44 INFO    opendrift.models.basemodel:2882: 2023-09-02 08:03:54.338376 - step 111 of 216 - 3854 active elements (0 deactivated)
13:45:44 DEBUG   opendrift.models.basemodel:2888: 6146 elements scheduled.
13:45:44 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 3854 elements
13:45:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:44 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:44 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 3854 elements
13:45:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:45 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:45 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:45 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 09:00:00)
13:45:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:45 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3047 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1163 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3047 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1163 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3047 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1163 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3047 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1163 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3047 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1163 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2132 elements, expanding data 1
13:45:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:45 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.93) and
                      after (2023-09-02 09:00:00, weight 0.07) in time
13:45:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07351247740057 and -58.97020089691391 degrees.
13:45:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07351247740057 and -58.97020089691391 degrees.
13:45:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:45 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:45 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:45 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.863394 (min) 1.11766 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.06647 (min) 0.717502 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000112164 (min) 0.000582382 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.30924 (min) 6.62923 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.4545 (min) 3.82435 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1233 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1527:               3854 active elements
13:45:45 DEBUG   opendrift.models.basemodel:1538:               59.10608417525904 <- latitude  -> 59.19068834285875
13:45:45 DEBUG   opendrift.models.basemodel:1543:               10.926498097983842 <- longitude -> 11.029809655896686
13:45:45 DEBUG   opendrift.models.basemodel:1548:               -14.363254776000977   <- z ->   0.0
13:45:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:45 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:45 DEBUG   opendrift.models.physics_methods:1049:    min: 0.039915, mean: 3.502945, max: 9.211372
13:45:45 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.039915, mean: 3.502945, max: 9.211372
13:45:45 DEBUG   opendrift.models.basemodel:813: 511 elements hit coastline, moving back to water
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
13:45:45 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:45 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:45 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 3854 elements above 0.100m with wind-sheared ocean current (0.019426 m/s - 0.152862 m/s)
13:45:45 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:45 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:45 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1049948253174591
13:45:45 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:45 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:45 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:45 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 373 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 284 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 295 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:45 DEBUG   opendrift.models.oceandrift:582: 265 elements penetrated seafloor, lifting up
13:45:45 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:45 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:45 DEBUG   opendrift.models.basemodel:2945: 3854 active elements (0 deactivated)
13:45:45 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6146, already seeded 3854
13:45:45 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 3889 elements
13:45:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:45 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1394 (max)
13:45:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1527:               3889 active elements
13:45:45 DEBUG   opendrift.models.basemodel:1538:               59.10649155603876 <- latitude  -> 59.18689814001891
13:45:45 DEBUG   opendrift.models.basemodel:1543:               10.925754904380735 <- longitude -> 11.031331116865829
13:45:45 DEBUG   opendrift.models.basemodel:1548:               -14.363255729675293   <- z ->   0.0
13:45:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:836: Lifting 256 elements to seafloor.
13:45:45 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:45 INFO    opendrift.models.basemodel:2882: 2023-09-02 08:13:54.338376 - step 112 of 216 - 3889 active elements (0 deactivated)
13:45:45 DEBUG   opendrift.models.basemodel:2888: 6111 elements scheduled.
13:45:45 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 3889 elements
13:45:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:45 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:45 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 3889 elements
13:45:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:46 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:46 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 09:00:00)
13:45:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:46 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3105 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3105 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3105 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3105 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3105 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1185 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2172 elements, expanding data 1
13:45:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
13:45:46 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.77) and
                      after (2023-09-02 09:00:00, weight 0.23) in time
13:45:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07425566344075 and -58.96867943953296 degrees.
13:45:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07425566344075 and -58.96867943953296 degrees.
13:45:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:46 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:46 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:46 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.80802 (min) 1.21963 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03157 (min) 0.765426 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000186872 (min) 0.000653967 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.64353 (min) 5.88438 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     y_wind: -12.0891 (min) 3.93736 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1394 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1527:               3889 active elements
13:45:46 DEBUG   opendrift.models.basemodel:1538:               59.10649155603876 <- latitude  -> 59.18689814001891
13:45:46 DEBUG   opendrift.models.basemodel:1543:               10.925754904380735 <- longitude -> 11.031331116865829
13:45:46 DEBUG   opendrift.models.basemodel:1548:               -14.361581802368164   <- z ->   0.0
13:45:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:46 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:46 DEBUG   opendrift.models.physics_methods:1049:    min: 0.032907, mean: 3.526120, max: 10.360814
13:45:46 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.032907, mean: 3.526120, max: 10.360814
13:45:46 DEBUG   opendrift.models.basemodel:813: 532 elements hit coastline, moving back to water
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:46 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:46 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:46 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 3889 elements above 0.100m with wind-sheared ocean current (0.000602 m/s - 0.193014 m/s)
13:45:46 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:46 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:46 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13283221905286788
13:45:46 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:46 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:46 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:46 DEBUG   opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 339 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:46 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:46 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:46 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:46 DEBUG   opendrift.models.basemodel:2945: 3889 active elements (0 deactivated)
13:45:46 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6111, already seeded 3889
13:45:46 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 3924 elements
13:45:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:46 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1771 (max)
13:45:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1527:               3924 active elements
13:45:46 DEBUG   opendrift.models.basemodel:1538:               59.10573103118784 <- latitude  -> 59.18629274736223
13:45:46 DEBUG   opendrift.models.basemodel:1543:               10.926124414050255 <- longitude -> 11.02952239686447
13:45:46 DEBUG   opendrift.models.basemodel:1548:               -14.916722297668457   <- z ->   0.0
13:45:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:836: Lifting 262 elements to seafloor.
13:45:46 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:46 INFO    opendrift.models.basemodel:2882: 2023-09-02 08:23:54.338376 - step 113 of 216 - 3924 active elements (0 deactivated)
13:45:46 DEBUG   opendrift.models.basemodel:2888: 6076 elements scheduled.
13:45:46 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 3924 elements
13:45:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:46 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:46 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 3924 elements
13:45:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:47 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:47 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:47 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 09:00:00)
13:45:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:47 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2274 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2274 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2274 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2274 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2274 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3166 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1181 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3166 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1181 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3166 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1181 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3166 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1181 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3166 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1181 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2193 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:47 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.60) and
                      after (2023-09-02 09:00:00, weight 0.40) in time
13:45:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07388615212748 and -58.97048814981426 degrees.
13:45:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07388615212748 and -58.97048814981426 degrees.
13:45:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:47 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:47 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:47 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.727817 (min) 1.24464 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.918992 (min) 0.747585 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000117738 (min) 0.000677258 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.82094 (min) 7.14115 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.0286 (min) 4.46304 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1771 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1527:               3924 active elements
13:45:47 DEBUG   opendrift.models.basemodel:1538:               59.10573103118784 <- latitude  -> 59.18629274736223
13:45:47 DEBUG   opendrift.models.basemodel:1543:               10.926124414050255 <- longitude -> 11.02952239686447
13:45:47 DEBUG   opendrift.models.basemodel:1548:               -14.916722297668457   <- z ->   0.0
13:45:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:47 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:47 DEBUG   opendrift.models.physics_methods:1049:    min: 0.043083, mean: 3.450212, max: 8.885785
13:45:47 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.043083, mean: 3.450212, max: 8.885785
13:45:47 DEBUG   opendrift.models.basemodel:813: 540 elements hit coastline, moving back to water
13:45:47 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:47 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:47 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:47 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 3924 elements above 0.100m with wind-sheared ocean current (0.001008 m/s - 0.158476 m/s)
13:45:47 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:47 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:47 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09770392443426132
13:45:47 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:47 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:47 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:47 DEBUG   opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 294 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 279 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 267 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:47 DEBUG   opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
13:45:47 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:47 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:47 DEBUG   opendrift.models.basemodel:2945: 3924 active elements (0 deactivated)
13:45:47 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6076, already seeded 3924
13:45:47 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 3958 elements
13:45:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:47 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0612 (max)
13:45:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1527:               3958 active elements
13:45:47 DEBUG   opendrift.models.basemodel:1538:               59.10545111651052 <- latitude  -> 59.18609526824179
13:45:47 DEBUG   opendrift.models.basemodel:1543:               10.927000969300597 <- longitude -> 11.02829916728712
13:45:47 DEBUG   opendrift.models.basemodel:1548:               -15.03642391204834   <- z ->   0.0
13:45:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:836: Lifting 296 elements to seafloor.
13:45:47 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:47 INFO    opendrift.models.basemodel:2882: 2023-09-02 08:33:54.338376 - step 114 of 216 - 3958 active elements (0 deactivated)
13:45:47 DEBUG   opendrift.models.basemodel:2888: 6042 elements scheduled.
13:45:47 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 3958 elements
13:45:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:47 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:47 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 3958 elements
13:45:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:48 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:48 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:48 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 09:00:00)
13:45:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:48 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 165 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3179 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1223 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3179 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1223 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3179 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1223 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3179 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1223 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3179 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1223 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3179 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1223 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2227 elements, expanding data 1
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:48 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.43) and
                      after (2023-09-02 09:00:00, weight 0.57) in time
13:45:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07300958794635 and -58.97171138826137 degrees.
13:45:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07300958794635 and -58.97171138826137 degrees.
13:45:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:48 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:48 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:48 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.755114 (min) 1.26363 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.994453 (min) 0.807317 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.67668e-05 (min) 0.000683073 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.12255 (min) 6.06484 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1098 (min) 3.58097 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.0612 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1527:               3958 active elements
13:45:48 DEBUG   opendrift.models.basemodel:1538:               59.10545111651052 <- latitude  -> 59.18609526824179
13:45:48 DEBUG   opendrift.models.basemodel:1543:               10.927000969300597 <- longitude -> 11.02829916728712
13:45:48 DEBUG   opendrift.models.basemodel:1548:               -15.028864860534668   <- z ->   0.0
13:45:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:48 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:48 DEBUG   opendrift.models.physics_methods:1049:    min: 0.127261, mean: 3.382019, max: 9.077307
13:45:48 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.127261, mean: 3.382019, max: 9.077307
13:45:48 DEBUG   opendrift.models.basemodel:813: 570 elements hit coastline, moving back to water
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:45:48 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:48 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:48 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 3958 elements above 0.100m with wind-sheared ocean current (0.007300 m/s - 0.155268 m/s)
13:45:48 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:48 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:48 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10196092608650206
13:45:48 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:48 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:48 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:48 DEBUG   opendrift.models.oceandrift:582: 464 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 298 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 22 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
13:45:48 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:45:48 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:48 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:48 DEBUG   opendrift.models.basemodel:2945: 3958 active elements (0 deactivated)
13:45:48 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6042, already seeded 3958
13:45:48 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 3993 elements
13:45:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:48 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1054 (max)
13:45:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1527:               3993 active elements
13:45:48 DEBUG   opendrift.models.basemodel:1538:               59.104095420405486 <- latitude  -> 59.18495211710382
13:45:48 DEBUG   opendrift.models.basemodel:1543:               10.930122721123466 <- longitude -> 11.031736977268071
13:45:48 DEBUG   opendrift.models.basemodel:1548:               -14.790524315852828   <- z ->   0.0
13:45:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:836: Lifting 265 elements to seafloor.
13:45:48 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:48 INFO    opendrift.models.basemodel:2882: 2023-09-02 08:43:54.338376 - step 115 of 216 - 3993 active elements (0 deactivated)
13:45:48 DEBUG   opendrift.models.basemodel:2888: 6007 elements scheduled.
13:45:48 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 3993 elements
13:45:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:48 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:48 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 3993 elements
13:45:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:49 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:49 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:49 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 09:00:00)
13:45:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:49 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2312 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3201 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2240 elements, expanding data 1
13:45:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:49 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.27) and
                      after (2023-09-02 09:00:00, weight 0.73) in time
13:45:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06988783847915 and -58.968273581522595 degrees.
13:45:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.06988783847915 and -58.968273581522595 degrees.
13:45:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:49 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:49 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:49 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.812105 (min) 1.28555 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.17888 (min) 0.807 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.53681e-05 (min) 0.00072651 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.74462 (min) 9.15015 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.7436 (min) 3.50613 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1054 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1527:               3993 active elements
13:45:49 DEBUG   opendrift.models.basemodel:1538:               59.104095420405486 <- latitude  -> 59.18495211710382
13:45:49 DEBUG   opendrift.models.basemodel:1543:               10.930122721123466 <- longitude -> 11.031736977268071
13:45:49 DEBUG   opendrift.models.basemodel:1548:               -14.790524315852828   <- z ->   0.0
13:45:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:49 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:49 DEBUG   opendrift.models.physics_methods:1049:    min: 0.073069, mean: 3.355071, max: 9.367816
13:45:49 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.073069, mean: 3.355071, max: 9.367816
13:45:49 DEBUG   opendrift.models.basemodel:813: 568 elements hit coastline, moving back to water
13:45:49 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:49 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:49 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:49 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 3993 elements above 0.100m with wind-sheared ocean current (0.010018 m/s - 0.133743 m/s)
13:45:49 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:49 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:49 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10859138361843108
13:45:49 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:49 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:49 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:49 DEBUG   opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 264 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:49 DEBUG   opendrift.models.oceandrift:582: 264 elements penetrated seafloor, lifting up
13:45:49 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:49 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:49 DEBUG   opendrift.models.basemodel:2945: 3993 active elements (0 deactivated)
13:45:49 DEBUG   opendrift.models.basemodel:1658: to be seeded: 6007, already seeded 3993
13:45:49 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 4028 elements
13:45:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:49 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1188 (max)
13:45:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1527:               4028 active elements
13:45:49 DEBUG   opendrift.models.basemodel:1538:               59.10447218748118 <- latitude  -> 59.18548287877916
13:45:49 DEBUG   opendrift.models.basemodel:1543:               10.933570418610534 <- longitude -> 11.028340333352483
13:45:49 DEBUG   opendrift.models.basemodel:1548:               -14.262167616827623   <- z ->   0.0
13:45:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:836: Lifting 261 elements to seafloor.
13:45:49 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:49 INFO    opendrift.models.basemodel:2882: 2023-09-02 08:53:54.338376 - step 116 of 216 - 4028 active elements (0 deactivated)
13:45:49 DEBUG   opendrift.models.basemodel:2888: 5972 elements scheduled.
13:45:49 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 4028 elements
13:45:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:49 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:49 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 4028 elements
13:45:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 08:00:00 (before)
                2023-09-02 09:00:00 (after)
13:45:50 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:50 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 09:00:00)
13:45:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 08:00:00) in space  (linearNDFast)
13:45:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:50 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3234 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1229 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3234 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1229 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3234 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1229 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3234 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1229 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3234 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1229 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2277 elements, expanding data 1
13:45:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
13:45:50 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 08:00:00, weight 0.10) and
                      after (2023-09-02 09:00:00, weight 0.90) in time
13:45:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0664401438237 and -58.97167021630226 degrees.
13:45:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0664401438237 and -58.97167021630226 degrees.
13:45:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:50 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:50 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:50 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.751089 (min) 1.15531 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.990635 (min) 0.790659 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.41153e-05 (min) 0.000626328 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.69189 (min) 7.66032 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.97797 (min) 4.243 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.1188 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1527:               4028 active elements
13:45:50 DEBUG   opendrift.models.basemodel:1538:               59.10447218748118 <- latitude  -> 59.18548287877916
13:45:50 DEBUG   opendrift.models.basemodel:1543:               10.933570418610534 <- longitude -> 11.028340333352483
13:45:50 DEBUG   opendrift.models.basemodel:1548:               -14.262167616827623   <- z ->   0.0
13:45:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:50 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:50 DEBUG   opendrift.models.physics_methods:1049:    min: 0.095866, mean: 3.343918, max: 8.918183
13:45:50 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.095866, mean: 3.343918, max: 8.918183
13:45:50 DEBUG   opendrift.models.basemodel:813: 567 elements hit coastline, moving back to water
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
13:45:50 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:50 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:50 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 4028 elements above 0.100m with wind-sheared ocean current (0.017899 m/s - 0.149735 m/s)
13:45:50 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:50 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:50 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09841766935546874
13:45:50 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:50 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:50 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:50 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 256 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 27 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
13:45:50 DEBUG   opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
13:45:50 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:50 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:50 DEBUG   opendrift.models.basemodel:2945: 4028 active elements (0 deactivated)
13:45:50 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5972, already seeded 4028
13:45:50 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 4063 elements
13:45:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:50 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2009 (max)
13:45:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1527:               4063 active elements
13:45:50 DEBUG   opendrift.models.basemodel:1538:               59.10364129233096 <- latitude  -> 59.187531435521905
13:45:50 DEBUG   opendrift.models.basemodel:1543:               10.934035238745711 <- longitude -> 11.029945821548402
13:45:50 DEBUG   opendrift.models.basemodel:1548:               -14.475382250180648   <- z ->   0.0
13:45:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:836: Lifting 291 elements to seafloor.
13:45:50 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:50 INFO    opendrift.models.basemodel:2882: 2023-09-02 09:03:54.338376 - step 117 of 216 - 4063 active elements (0 deactivated)
13:45:50 DEBUG   opendrift.models.basemodel:2888: 5937 elements scheduled.
13:45:50 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 4063 elements
13:45:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:50 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:50 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 4063 elements
13:45:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:51 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:51 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:51 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 10:00:00)
13:45:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:51 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2386 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2386 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2386 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2386 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2386 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 183 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3253 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3253 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3253 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3253 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3253 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1250 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2308 elements, expanding data 1
13:45:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
13:45:51 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.93) and
                      after (2023-09-02 10:00:00, weight 0.07) in time
13:45:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.065975331442274 and -58.97006473244585 degrees.
13:45:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.065975331442274 and -58.97006473244585 degrees.
13:45:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:51 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:51 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:51 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.80446 (min) 1.19795 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07528 (min) 0.769798 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000100076 (min) 0.000629973 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.90896 (min) 7.58994 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.981 (min) 3.51384 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2009 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1527:               4063 active elements
13:45:51 DEBUG   opendrift.models.basemodel:1538:               59.10364129233096 <- latitude  -> 59.187531435521905
13:45:51 DEBUG   opendrift.models.basemodel:1543:               10.934035238745711 <- longitude -> 11.029945821548402
13:45:51 DEBUG   opendrift.models.basemodel:1548:               -14.475382250180648   <- z ->   0.0
13:45:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:51 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:51 DEBUG   opendrift.models.physics_methods:1049:    min: 0.040876, mean: 3.319242, max: 9.439545
13:45:51 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.040876, mean: 3.319242, max: 9.439545
13:45:51 DEBUG   opendrift.models.basemodel:813: 579 elements hit coastline, moving back to water
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:45:51 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:51 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:51 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 4063 elements above 0.100m with wind-sheared ocean current (0.014055 m/s - 0.172382 m/s)
13:45:51 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:51 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:51 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11026065496118545
13:45:51 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:51 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:51 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:51 DEBUG   opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 362 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 274 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:51 DEBUG   opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
13:45:51 DEBUG   opendrift.models.oceandrift:600: 30 elements reached seafloor, set to bottom
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:45:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
13:45:51 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:51 DEBUG   opendrift.models.basemodel:2945: 4063 active elements (0 deactivated)
13:45:51 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5937, already seeded 4063
13:45:51 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 4097 elements
13:45:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:51 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2542 (max)
13:45:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1527:               4097 active elements
13:45:51 DEBUG   opendrift.models.basemodel:1538:               59.102281126654674 <- latitude  -> 59.18631662638745
13:45:51 DEBUG   opendrift.models.basemodel:1543:               10.931017561231613 <- longitude -> 11.032810038710307
13:45:51 DEBUG   opendrift.models.basemodel:1548:               -15.148733139038086   <- z ->   0.0
13:45:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:836: Lifting 279 elements to seafloor.
13:45:51 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:51 INFO    opendrift.models.basemodel:2882: 2023-09-02 09:13:54.338376 - step 118 of 216 - 4097 active elements (0 deactivated)
13:45:51 DEBUG   opendrift.models.basemodel:2888: 5903 elements scheduled.
13:45:51 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 4097 elements
13:45:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:51 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:51 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 4097 elements
13:45:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:52 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 10:00:00)
13:45:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:52 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2421 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2421 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2421 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2421 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2421 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2421 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 184 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3286 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1274 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3286 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1274 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3286 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1274 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3286 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1274 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3286 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1274 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3286 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1274 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2341 elements, expanding data 1
13:45:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
13:45:52 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.77) and
                      after (2023-09-02 10:00:00, weight 0.23) in time
13:45:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0689930109776 and -58.967200519545074 degrees.
13:45:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0689930109776 and -58.967200519545074 degrees.
13:45:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:52 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:52 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:52 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.836917 (min) 1.15475 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.1071 (min) 0.700692 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000130498 (min) 0.000555046 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.55443 (min) 7.01207 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.58298 (min) 4.05387 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2542 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1527:               4097 active elements
13:45:52 DEBUG   opendrift.models.basemodel:1538:               59.102281126654674 <- latitude  -> 59.18631662638745
13:45:52 DEBUG   opendrift.models.basemodel:1543:               10.931017561231613 <- longitude -> 11.032810038710307
13:45:52 DEBUG   opendrift.models.basemodel:1548:               -15.148733139038086   <- z ->   0.0
13:45:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:52 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:52 DEBUG   opendrift.models.physics_methods:1049:    min: 0.029966, mean: 3.256067, max: 8.375552
13:45:52 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.029966, mean: 3.256067, max: 8.375552
13:45:52 DEBUG   opendrift.models.basemodel:813: 566 elements hit coastline, moving back to water
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:52 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:52 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:52 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 4097 elements above 0.100m with wind-sheared ocean current (0.009390 m/s - 0.143152 m/s)
13:45:52 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:52 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:52 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0868059956141281
13:45:52 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:52 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:52 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:52 DEBUG   opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 271 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:52 DEBUG   opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
13:45:52 DEBUG   opendrift.models.oceandrift:600: 29 elements reached seafloor, set to bottom
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
13:45:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
13:45:52 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:52 DEBUG   opendrift.models.basemodel:2945: 4097 active elements (0 deactivated)
13:45:52 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5903, already seeded 4097
13:45:52 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 4132 elements
13:45:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:52 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2672 (max)
13:45:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1527:               4132 active elements
13:45:52 DEBUG   opendrift.models.basemodel:1538:               59.10170625263762 <- latitude  -> 59.18823090899279
13:45:52 DEBUG   opendrift.models.basemodel:1543:               10.927940107632395 <- longitude -> 11.033807775733875
13:45:52 DEBUG   opendrift.models.basemodel:1548:               -15.148733139038086   <- z ->   0.0
13:45:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:836: Lifting 279 elements to seafloor.
13:45:52 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:52 INFO    opendrift.models.basemodel:2882: 2023-09-02 09:23:54.338376 - step 119 of 216 - 4132 active elements (0 deactivated)
13:45:52 DEBUG   opendrift.models.basemodel:2888: 5868 elements scheduled.
13:45:52 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 4132 elements
13:45:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 4132 elements
13:45:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:52 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 10:00:00)
13:45:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:52 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2460 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2460 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2460 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2460 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2460 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2460 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3332 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3332 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3332 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3332 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3332 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3332 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1297 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2392 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:53 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.60) and
                      after (2023-09-02 10:00:00, weight 0.40) in time
13:45:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07207044336737 and -58.96620278403734 degrees.
13:45:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07207044336737 and -58.96620278403734 degrees.
13:45:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:53 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:53 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:53 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.814963 (min) 1.18437 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03936 (min) 0.885313 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000140194 (min) 0.000616615 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.345 (min) 6.94867 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.0336 (min) 4.4199 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2672 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1527:               4132 active elements
13:45:53 DEBUG   opendrift.models.basemodel:1538:               59.10170625263762 <- latitude  -> 59.18823090899279
13:45:53 DEBUG   opendrift.models.basemodel:1543:               10.927940107632395 <- longitude -> 11.033807775733875
13:45:53 DEBUG   opendrift.models.basemodel:1548:               -15.148733139038086   <- z ->   0.0
13:45:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:53 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:53 DEBUG   opendrift.models.physics_methods:1049:    min: 0.036250, mean: 3.262864, max: 8.706209
13:45:53 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.036250, mean: 3.262864, max: 8.706209
13:45:53 DEBUG   opendrift.models.basemodel:813: 571 elements hit coastline, moving back to water
13:45:53 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:53 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:53 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:53 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 4132 elements above 0.100m with wind-sheared ocean current (0.008277 m/s - 0.177203 m/s)
13:45:53 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:53 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:53 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09379494548709869
13:45:53 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:53 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:53 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:53 DEBUG   opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 337 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 303 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 302 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 283 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:53 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:53 DEBUG   opendrift.models.basemodel:2945: 4132 active elements (0 deactivated)
13:45:53 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5868, already seeded 4132
13:45:53 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 4167 elements
13:45:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3068 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1527:               4167 active elements
13:45:53 DEBUG   opendrift.models.basemodel:1538:               59.10170625263762 <- latitude  -> 59.188917214290626
13:45:53 DEBUG   opendrift.models.basemodel:1543:               10.926914644575483 <- longitude -> 11.030247743318663
13:45:53 DEBUG   opendrift.models.basemodel:1548:               -15.138733139038086   <- z ->   0.0
13:45:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 296 elements to seafloor.
13:45:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:53 INFO    opendrift.models.basemodel:2882: 2023-09-02 09:33:54.338376 - step 120 of 216 - 4167 active elements (0 deactivated)
13:45:53 DEBUG   opendrift.models.basemodel:2888: 5833 elements scheduled.
13:45:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 4167 elements
13:45:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 4167 elements
13:45:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:53 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:53 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-09-02 10:00:00)
13:45:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:53 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 3
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1330 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1330 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1330 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1330 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1330 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1330 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2427 elements, expanding data 1
13:45:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
13:45:53 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.43) and
                      after (2023-09-02 10:00:00, weight 0.57) in time
13:45:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.073095912841815 and -58.96976280944686 degrees.
13:45:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.073095912841815 and -58.96976280944686 degrees.
13:45:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:53 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:53 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:53 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.772397 (min) 1.10322 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01394 (min) 0.905061 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000157806 (min) 0.000606704 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.61387 (min) 6.921 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.97822 (min) 4.27095 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3068 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1527:               4167 active elements
13:45:53 DEBUG   opendrift.models.basemodel:1538:               59.10170625263762 <- latitude  -> 59.188917214290626
13:45:53 DEBUG   opendrift.models.basemodel:1543:               10.926914644575483 <- longitude -> 11.030247743318663
13:45:53 DEBUG   opendrift.models.basemodel:1548:               -15.138733139038086   <- z ->   0.0
13:45:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:53 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:53 DEBUG   opendrift.models.physics_methods:1049:    min: 0.034086, mean: 3.293686, max: 10.057058
13:45:53 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.034086, mean: 3.293686, max: 10.057058
13:45:53 DEBUG   opendrift.models.basemodel:813: 582 elements hit coastline, moving back to water
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:45:53 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:53 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:53 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 4167 elements above 0.100m with wind-sheared ocean current (0.001344 m/s - 0.189375 m/s)
13:45:53 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:53 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:53 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12515793175323484
13:45:53 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:53 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:53 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:53 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 279 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 276 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 258 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 261 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:53 DEBUG   opendrift.models.oceandrift:582: 230 elements penetrated seafloor, lifting up
13:45:53 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:45:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:45:53 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:53 DEBUG   opendrift.models.basemodel:2945: 4167 active elements (0 deactivated)
13:45:53 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5833, already seeded 4167
13:45:53 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 4201 elements
13:45:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3234 (max)
13:45:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1527:               4201 active elements
13:45:53 DEBUG   opendrift.models.basemodel:1538:               59.10185388058851 <- latitude  -> 59.18925086310956
13:45:53 DEBUG   opendrift.models.basemodel:1543:               10.927731008197446 <- longitude -> 11.032260653123473
13:45:53 DEBUG   opendrift.models.basemodel:1548:               -14.497503280639648   <- z ->   0.0
13:45:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:836: Lifting 313 elements to seafloor.
13:45:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:53 INFO    opendrift.models.basemodel:2882: 2023-09-02 09:43:54.338376 - step 121 of 216 - 4201 active elements (0 deactivated)
13:45:53 DEBUG   opendrift.models.basemodel:2888: 5799 elements scheduled.
13:45:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 4201 elements
13:45:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 4201 elements
13:45:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:54 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:54 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:54 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-09-02 10:00:00)
13:45:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:54 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2528 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 173 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3401 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1334 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3401 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1334 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3401 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1334 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3401 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1334 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3401 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1334 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2450 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 2
13:45:54 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.27) and
                      after (2023-09-02 10:00:00, weight 0.73) in time
13:45:54 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07227956319207 and -58.96774989531066 degrees.
13:45:54 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07227956319207 and -58.96774989531066 degrees.
13:45:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:54 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:54 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:54 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:54 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:54 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.799111 (min) 1.25051 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.04777 (min) 0.671958 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000153152 (min) 0.000604691 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.00672 (min) 7.841 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.5784 (min) 4.41954 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3234 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1527:               4201 active elements
13:45:54 DEBUG   opendrift.models.basemodel:1538:               59.10185388058851 <- latitude  -> 59.18925086310956
13:45:54 DEBUG   opendrift.models.basemodel:1543:               10.927731008197446 <- longitude -> 11.032260653123473
13:45:54 DEBUG   opendrift.models.basemodel:1548:               -14.472862243652344   <- z ->   0.0
13:45:54 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:54 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:54 DEBUG   opendrift.models.physics_methods:1049:    min: 0.111910, mean: 3.269233, max: 9.852242
13:45:54 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.111910, mean: 3.269233, max: 9.852242
13:45:54 DEBUG   opendrift.models.basemodel:813: 595 elements hit coastline, moving back to water
13:45:54 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:54 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:54 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:54 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 4201 elements above 0.100m with wind-sheared ocean current (0.000811 m/s - 0.157794 m/s)
13:45:54 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:54 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:54 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12011222929533004
13:45:54 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:54 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:54 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:54 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 384 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 362 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 294 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 283 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:54 DEBUG   opendrift.models.oceandrift:582: 266 elements penetrated seafloor, lifting up
13:45:54 DEBUG   opendrift.models.oceandrift:600: 31 elements reached seafloor, set to bottom
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
13:45:54 DEBUG   opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
13:45:54 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:54 DEBUG   opendrift.models.basemodel:2945: 4201 active elements (0 deactivated)
13:45:54 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5799, already seeded 4201
13:45:54 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 4236 elements
13:45:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:54 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:45:54 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:54 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:54 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:54 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3526 (max)
13:45:54 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1527:               4236 active elements
13:45:54 DEBUG   opendrift.models.basemodel:1538:               59.10262746294643 <- latitude  -> 59.19002468340068
13:45:54 DEBUG   opendrift.models.basemodel:1543:               10.925104483033817 <- longitude -> 11.028396851845132
13:45:54 DEBUG   opendrift.models.basemodel:1548:               -14.462862243652344   <- z ->   0.0
13:45:54 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:836: Lifting 278 elements to seafloor.
13:45:54 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:54 INFO    opendrift.models.basemodel:2882: 2023-09-02 09:53:54.338376 - step 122 of 216 - 4236 active elements (0 deactivated)
13:45:54 DEBUG   opendrift.models.basemodel:2888: 5764 elements scheduled.
13:45:54 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 4236 elements
13:45:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:54 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:54 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:54 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:54 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:54 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:54 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:54 DEBUG   opendrift.models.basemodel:1253: Data needed for 4236 elements
13:45:54 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:54 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 09:00:00 (before)
                2023-09-02 10:00:00 (after)
13:45:55 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:55 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:55 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 10:00:00)
13:45:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 09:00:00) in space  (linearNDFast)
13:45:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:55 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2579 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2579 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2579 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2579 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2579 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3444 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1367 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3444 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1367 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3444 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1367 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3444 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1367 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3444 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1367 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2504 elements, expanding data 1
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
13:45:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:55 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 09:00:00, weight 0.10) and
                      after (2023-09-02 10:00:00, weight 0.90) in time
13:45:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0749060871407 and -58.97161370691662 degrees.
13:45:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0749060871407 and -58.97161370691662 degrees.
13:45:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:55 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:55 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:55 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.831886 (min) 1.05933 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.06648 (min) 0.769446 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000218816 (min) 0.000602678 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.96945 (min) 6.34226 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.53118 (min) 5.8107 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3526 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1527:               4236 active elements
13:45:55 DEBUG   opendrift.models.basemodel:1538:               59.10262746294643 <- latitude  -> 59.19002468340068
13:45:55 DEBUG   opendrift.models.basemodel:1543:               10.925104483033817 <- longitude -> 11.028396851845132
13:45:55 DEBUG   opendrift.models.basemodel:1548:               -14.462862243652344   <- z ->   0.0
13:45:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:55 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:55 DEBUG   opendrift.models.physics_methods:1049:    min: 0.015296, mean: 3.207722, max: 9.367119
13:45:55 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.015296, mean: 3.207722, max: 9.367119
13:45:55 DEBUG   opendrift.models.basemodel:813: 612 elements hit coastline, moving back to water
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:45:55 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:55 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:55 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 4236 elements above 0.100m with wind-sheared ocean current (0.000247 m/s - 0.131821 m/s)
13:45:55 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:55 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:55 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10857522895248413
13:45:55 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:55 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:55 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:55 DEBUG   opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 325 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 309 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 260 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:55 DEBUG   opendrift.models.oceandrift:582: 269 elements penetrated seafloor, lifting up
13:45:55 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:45:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:45:55 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:55 DEBUG   opendrift.models.basemodel:2945: 4236 active elements (0 deactivated)
13:45:55 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5764, already seeded 4236
13:45:55 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 4271 elements
13:45:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:55 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3508 (max)
13:45:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1527:               4271 active elements
13:45:55 DEBUG   opendrift.models.basemodel:1538:               59.10127445006883 <- latitude  -> 59.189258807172564
13:45:55 DEBUG   opendrift.models.basemodel:1543:               10.926350798956936 <- longitude -> 11.031352783388844
13:45:55 DEBUG   opendrift.models.basemodel:1548:               -14.407034149169922   <- z ->   0.0
13:45:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:836: Lifting 316 elements to seafloor.
13:45:55 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:55 INFO    opendrift.models.basemodel:2882: 2023-09-02 10:03:54.338376 - step 123 of 216 - 4271 active elements (0 deactivated)
13:45:55 DEBUG   opendrift.models.basemodel:2888: 5729 elements scheduled.
13:45:55 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 4271 elements
13:45:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:55 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:55 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 4271 elements
13:45:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:56 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:56 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:56 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 11:00:00)
13:45:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:56 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space  (linearNDFast)
13:45:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2613 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2613 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2613 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2613 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2613 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 3
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3483 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3483 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3483 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3483 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3483 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1392 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 1
13:45:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
13:45:56 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.93) and
                      after (2023-09-02 11:00:00, weight 0.07) in time
13:45:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07365977022484 and -58.968657776451415 degrees.
13:45:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07365977022484 and -58.968657776451415 degrees.
13:45:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:56 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:56 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:56 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.716162 (min) 1.22548 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02203 (min) 0.92245 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000225421 (min) 0.000641637 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.54596 (min) 6.6269 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.89224 (min) 4.08509 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3508 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1527:               4271 active elements
13:45:56 DEBUG   opendrift.models.basemodel:1538:               59.10127445006883 <- latitude  -> 59.189258807172564
13:45:56 DEBUG   opendrift.models.basemodel:1543:               10.926350798956936 <- longitude -> 11.031352783388844
13:45:56 DEBUG   opendrift.models.basemodel:1548:               -14.324902534484863   <- z ->   0.0
13:45:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:56 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:56 DEBUG   opendrift.models.physics_methods:1049:    min: 0.040328, mean: 3.215223, max: 8.984077
13:45:56 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.040328, mean: 3.215223, max: 8.984077
13:45:56 DEBUG   opendrift.models.basemodel:813: 627 elements hit coastline, moving back to water
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:45:56 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:56 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:56 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 4271 elements above 0.100m with wind-sheared ocean current (0.009362 m/s - 0.141060 m/s)
13:45:56 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:56 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:56 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09987735376985549
13:45:56 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:56 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:56 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:56 DEBUG   opendrift.models.oceandrift:582: 478 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 360 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 318 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 291 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:56 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:45:56 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:56 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:56 DEBUG   opendrift.models.basemodel:2945: 4271 active elements (0 deactivated)
13:45:56 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5729, already seeded 4271
13:45:56 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 4306 elements
13:45:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:56 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3715 (max)
13:45:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1527:               4306 active elements
13:45:56 DEBUG   opendrift.models.basemodel:1538:               59.10036340446649 <- latitude  -> 59.187974235034176
13:45:56 DEBUG   opendrift.models.basemodel:1543:               10.925881456622516 <- longitude -> 11.031294348908665
13:45:56 DEBUG   opendrift.models.basemodel:1548:               -14.112969398498535   <- z ->   0.0
13:45:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:836: Lifting 305 elements to seafloor.
13:45:56 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:56 INFO    opendrift.models.basemodel:2882: 2023-09-02 10:13:54.338376 - step 124 of 216 - 4306 active elements (0 deactivated)
13:45:56 DEBUG   opendrift.models.basemodel:2888: 5694 elements scheduled.
13:45:56 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 4306 elements
13:45:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:56 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:56 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 4306 elements
13:45:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:57 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:57 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:57 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 11:00:00)
13:45:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:57 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space  (linearNDFast)
13:45:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2660 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2660 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2660 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2660 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2660 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 196 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3522 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1432 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3522 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1432 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3522 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1432 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3522 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1432 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3522 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1432 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2581 elements, expanding data 1
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:45:57 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.77) and
                      after (2023-09-02 11:00:00, weight 0.23) in time
13:45:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.074129102347456 and -58.96871620588614 degrees.
13:45:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.074129102347456 and -58.96871620588614 degrees.
13:45:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:57 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:57 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:57 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.846139 (min) 1.09797 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02105 (min) 0.79369 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000155264 (min) 0.000636785 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.18483 (min) 7.4939 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1207 (min) 4.0606 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3715 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1527:               4306 active elements
13:45:57 DEBUG   opendrift.models.basemodel:1538:               59.10036340446649 <- latitude  -> 59.187974235034176
13:45:57 DEBUG   opendrift.models.basemodel:1543:               10.925881456622516 <- longitude -> 11.031294348908665
13:45:57 DEBUG   opendrift.models.basemodel:1548:               -14.112969398498535   <- z ->   0.0
13:45:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:57 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:57 DEBUG   opendrift.models.physics_methods:1049:    min: 0.084694, mean: 3.130108, max: 8.704889
13:45:57 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.084694, mean: 3.130108, max: 8.704889
13:45:57 DEBUG   opendrift.models.basemodel:813: 630 elements hit coastline, moving back to water
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:57 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:57 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:57 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 4306 elements above 0.100m with wind-sheared ocean current (0.001828 m/s - 0.122600 m/s)
13:45:57 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:57 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:57 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09376652033718108
13:45:57 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:57 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:57 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:57 DEBUG   opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 359 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 311 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 286 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 257 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:45:57 DEBUG   opendrift.models.oceandrift:582: 275 elements penetrated seafloor, lifting up
13:45:57 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:57 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:57 DEBUG   opendrift.models.basemodel:2945: 4306 active elements (0 deactivated)
13:45:57 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5694, already seeded 4306
13:45:57 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:45:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 4340 elements
13:45:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:57 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3336 (max)
13:45:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1527:               4340 active elements
13:45:57 DEBUG   opendrift.models.basemodel:1538:               59.10201413811641 <- latitude  -> 59.18869409620535
13:45:57 DEBUG   opendrift.models.basemodel:1543:               10.922590980164648 <- longitude -> 11.031294348908668
13:45:57 DEBUG   opendrift.models.basemodel:1548:               -14.814800993765882   <- z ->   0.0
13:45:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:836: Lifting 303 elements to seafloor.
13:45:57 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:57 INFO    opendrift.models.basemodel:2882: 2023-09-02 10:23:54.338376 - step 125 of 216 - 4340 active elements (0 deactivated)
13:45:57 DEBUG   opendrift.models.basemodel:2888: 5660 elements scheduled.
13:45:57 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 4340 elements
13:45:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:57 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:57 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 4340 elements
13:45:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:58 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:58 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 11:00:00)
13:45:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:58 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space  (linearNDFast)
13:45:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2684 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2684 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2684 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2684 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2684 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3561 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1446 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3561 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1446 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3561 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1446 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3561 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1446 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3561 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1446 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
13:45:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
13:45:58 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.60) and
                      after (2023-09-02 11:00:00, weight 0.40) in time
13:45:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.077419598792126 and -58.96871620588614 degrees.
13:45:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.077419598792126 and -58.96871620588614 degrees.
13:45:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:58 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:58 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:58 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.93713 (min) 1.48862 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.16977 (min) 0.846791 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000178874 (min) 0.000578152 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.14225 (min) 7.83653 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.10955 (min) 4.69027 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3336 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1527:               4340 active elements
13:45:58 DEBUG   opendrift.models.basemodel:1538:               59.10201413811641 <- latitude  -> 59.18869409620535
13:45:58 DEBUG   opendrift.models.basemodel:1543:               10.922590980164648 <- longitude -> 11.031294348908668
13:45:58 DEBUG   opendrift.models.basemodel:1548:               -14.814800993765882   <- z ->   0.0
13:45:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:58 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:58 DEBUG   opendrift.models.physics_methods:1049:    min: 0.048983, mean: 3.125968, max: 8.523716
13:45:58 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.048983, mean: 3.125968, max: 8.523716
13:45:58 DEBUG   opendrift.models.basemodel:813: 638 elements hit coastline, moving back to water
13:45:58 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:45:58 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:58 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:58 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 4340 elements above 0.100m with wind-sheared ocean current (0.014808 m/s - 0.158161 m/s)
13:45:58 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:58 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:58 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08990421336753844
13:45:58 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:58 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:58 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:58 DEBUG   opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 362 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 290 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 308 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 284 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:45:58 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:45:58 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:58 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:58 DEBUG   opendrift.models.basemodel:2945: 4340 active elements (0 deactivated)
13:45:58 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5660, already seeded 4340
13:45:58 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 4375 elements
13:45:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:58 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3422 (max)
13:45:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1527:               4375 active elements
13:45:58 DEBUG   opendrift.models.basemodel:1538:               59.10240722190327 <- latitude  -> 59.18857085841094
13:45:58 DEBUG   opendrift.models.basemodel:1543:               10.921783328854795 <- longitude -> 11.030568936159465
13:45:58 DEBUG   opendrift.models.basemodel:1548:               -14.599066723285038   <- z ->   0.0
13:45:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:836: Lifting 330 elements to seafloor.
13:45:58 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:58 INFO    opendrift.models.basemodel:2882: 2023-09-02 10:33:54.338376 - step 126 of 216 - 4375 active elements (0 deactivated)
13:45:58 DEBUG   opendrift.models.basemodel:2888: 5625 elements scheduled.
13:45:58 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 4375 elements
13:45:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:58 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:58 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 4375 elements
13:45:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:59 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:45:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:45:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:45:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:45:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:45:59 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:59 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 11:00:00)
13:45:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:59 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space  (linearNDFast)
13:45:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2697 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2697 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2697 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2697 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2697 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3589 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1445 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3589 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1445 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3589 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1445 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3589 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1445 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3589 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1445 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2619 elements, expanding data 1
13:45:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:45:59 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.43) and
                      after (2023-09-02 11:00:00, weight 0.57) in time
13:45:59 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07822723837247 and -58.96944161788173 degrees.
13:45:59 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07822723837247 and -58.96944161788173 degrees.
13:45:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:59 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:59 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:45:59 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:45:59 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:59 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.789163 (min) 1.12864 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.985622 (min) 0.825037 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000204376 (min) 0.000679294 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.86286 (min) 7.11556 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.0558 (min) 4.06749 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3422 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1527:               4375 active elements
13:45:59 DEBUG   opendrift.models.basemodel:1538:               59.10240722190327 <- latitude  -> 59.18857085841094
13:45:59 DEBUG   opendrift.models.basemodel:1543:               10.921783328854795 <- longitude -> 11.030568936159465
13:45:59 DEBUG   opendrift.models.basemodel:1548:               -14.599066723285038   <- z ->   0.0
13:45:59 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:59 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:45:59 DEBUG   opendrift.models.physics_methods:1049:    min: 0.079484, mean: 3.050977, max: 9.175802
13:45:59 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.079484, mean: 3.050977, max: 9.175802
13:45:59 DEBUG   opendrift.models.basemodel:813: 634 elements hit coastline, moving back to water
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:45:59 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:45:59 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:45:59 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 4375 elements above 0.100m with wind-sheared ocean current (0.025523 m/s - 0.145857 m/s)
13:45:59 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:45:59 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:45:59 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10418552951963424
13:45:59 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:45:59 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:45:59 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:45:59 DEBUG   opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 387 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 306 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 326 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 277 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 273 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:45:59 DEBUG   opendrift.models.oceandrift:582: 288 elements penetrated seafloor, lifting up
13:45:59 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:45:59 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:45:59 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:45:59 DEBUG   opendrift.models.basemodel:2945: 4375 active elements (0 deactivated)
13:45:59 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5625, already seeded 4375
13:45:59 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:45:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:45:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 4410 elements
13:45:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:59 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:45:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:45:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:45:59 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:45:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:59 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:45:59 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:45:59 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2526 (max)
13:45:59 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1527:               4410 active elements
13:45:59 DEBUG   opendrift.models.basemodel:1538:               59.10289935425634 <- latitude  -> 59.188645608402055
13:45:59 DEBUG   opendrift.models.basemodel:1543:               10.921812885269533 <- longitude -> 11.030568936159467
13:45:59 DEBUG   opendrift.models.basemodel:1548:               -14.915521850585938   <- z ->   0.0
13:45:59 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
13:45:59 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:45:59 INFO    opendrift.models.basemodel:2882: 2023-09-02 10:43:54.338376 - step 127 of 216 - 4410 active elements (0 deactivated)
13:45:59 DEBUG   opendrift.models.basemodel:2888: 5590 elements scheduled.
13:45:59 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:45:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:45:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:45:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 4410 elements
13:45:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:45:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:45:59 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:45:59 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:45:59 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:45:59 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:45:59 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:59 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:45:59 DEBUG   opendrift.models.basemodel:1253: Data needed for 4410 elements
13:45:59 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:45:59 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:46:00 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:00 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:00 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:00 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:00 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 11:00:00)
13:46:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:46:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:00 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2741 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2741 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2741 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2741 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2741 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 3
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3635 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1495 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3635 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1495 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3635 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1495 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3635 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1495 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3635 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1495 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 1
13:46:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 2
13:46:00 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.27) and
                      after (2023-09-02 11:00:00, weight 0.73) in time
13:46:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07819768122755 and -58.96944161788173 degrees.
13:46:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.07819768122755 and -58.96944161788173 degrees.
13:46:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:00 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:00 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:00 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.750108 (min) 1.11713 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.914067 (min) 0.821363 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000156946 (min) 0.000588519 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.61698 (min) 7.40876 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.1287 (min) 4.13335 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2526 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1527:               4410 active elements
13:46:00 DEBUG   opendrift.models.basemodel:1538:               59.10289935425634 <- latitude  -> 59.188645608402055
13:46:00 DEBUG   opendrift.models.basemodel:1543:               10.921812885269533 <- longitude -> 11.030568936159467
13:46:00 DEBUG   opendrift.models.basemodel:1548:               -14.915521850585938   <- z ->   0.0
13:46:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:00 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:00 DEBUG   opendrift.models.physics_methods:1049:    min: 0.098651, mean: 3.003157, max: 8.997296
13:46:00 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.098651, mean: 3.003157, max: 8.997296
13:46:00 DEBUG   opendrift.models.basemodel:813: 657 elements hit coastline, moving back to water
13:46:00 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:00 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:00 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:00 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 4410 elements above 0.100m with wind-sheared ocean current (0.000689 m/s - 0.136740 m/s)
13:46:00 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:00 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:00 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1001714746223259
13:46:00 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:00 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:00 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:00 DEBUG   opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 373 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 336 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 319 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:00 DEBUG   opendrift.models.oceandrift:582: 281 elements penetrated seafloor, lifting up
13:46:00 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:00 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:00 DEBUG   opendrift.models.basemodel:2945: 4410 active elements (0 deactivated)
13:46:00 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5590, already seeded 4410
13:46:00 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 4445 elements
13:46:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:46:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:46:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:00 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2699 (max)
13:46:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1527:               4445 active elements
13:46:00 DEBUG   opendrift.models.basemodel:1538:               59.10307266867271 <- latitude  -> 59.1884667749794
13:46:00 DEBUG   opendrift.models.basemodel:1543:               10.92010628607917 <- longitude -> 11.030568936159467
13:46:00 DEBUG   opendrift.models.basemodel:1548:               -14.600433567665107   <- z ->   0.0
13:46:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:836: Lifting 354 elements to seafloor.
13:46:00 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:00 INFO    opendrift.models.basemodel:2882: 2023-09-02 10:53:54.338376 - step 128 of 216 - 4445 active elements (0 deactivated)
13:46:00 DEBUG   opendrift.models.basemodel:2888: 5555 elements scheduled.
13:46:00 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 4445 elements
13:46:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:00 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:00 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 4445 elements
13:46:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 10:00:00 (before)
                2023-09-02 11:00:00 (after)
13:46:01 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:01 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:01 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 11:00:00)
13:46:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 10:00:00) in space  (linearNDFast)
13:46:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:01 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3665 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3665 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3665 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3665 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3665 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1531 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
13:46:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
13:46:01 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 10:00:00, weight 0.10) and
                      after (2023-09-02 11:00:00, weight 0.90) in time
13:46:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.079904275819054 and -58.96944161788173 degrees.
13:46:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.079904275819054 and -58.96944161788173 degrees.
13:46:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:01 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:01 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:01 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.910386 (min) 1.15398 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11401 (min) 0.80395 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000159349 (min) 0.00051869 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.23381 (min) 8.09904 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.73795 (min) 4.18542 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2699 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1527:               4445 active elements
13:46:01 DEBUG   opendrift.models.basemodel:1538:               59.10307266867271 <- latitude  -> 59.1884667749794
13:46:01 DEBUG   opendrift.models.basemodel:1543:               10.92010628607917 <- longitude -> 11.030568936159467
13:46:01 DEBUG   opendrift.models.basemodel:1548:               -14.600433567665107   <- z ->   0.0
13:46:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:01 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:01 DEBUG   opendrift.models.physics_methods:1049:    min: 0.032478, mean: 2.974126, max: 8.883632
13:46:01 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.032478, mean: 2.974126, max: 8.883632
13:46:01 DEBUG   opendrift.models.basemodel:813: 626 elements hit coastline, moving back to water
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
13:46:01 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:01 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:01 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 4445 elements above 0.100m with wind-sheared ocean current (0.004428 m/s - 0.185390 m/s)
13:46:01 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:01 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:01 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0976565903802681
13:46:01 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:01 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:01 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:01 DEBUG   opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 309 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 289 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 296 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:46:01 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:46:01 DEBUG   opendrift.models.oceandrift:600: 26 elements reached seafloor, set to bottom
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
13:46:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
13:46:01 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:01 DEBUG   opendrift.models.basemodel:2945: 4445 active elements (0 deactivated)
13:46:01 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5555, already seeded 4445
13:46:01 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 4479 elements
13:46:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:01 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2424 (max)
13:46:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1527:               4479 active elements
13:46:01 DEBUG   opendrift.models.basemodel:1538:               59.10312094395746 <- latitude  -> 59.18769097364262
13:46:01 DEBUG   opendrift.models.basemodel:1543:               10.918850123327397 <- longitude -> 11.029909597647137
13:46:01 DEBUG   opendrift.models.basemodel:1548:               -14.881341934204102   <- z ->   0.0
13:46:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:836: Lifting 363 elements to seafloor.
13:46:01 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:01 INFO    opendrift.models.basemodel:2882: 2023-09-02 11:03:54.338376 - step 129 of 216 - 4479 active elements (0 deactivated)
13:46:01 DEBUG   opendrift.models.basemodel:2888: 5521 elements scheduled.
13:46:01 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 4479 elements
13:46:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:01 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:01 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 4479 elements
13:46:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:02 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:02 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-09-02 12:00:00)
13:46:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:02 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2837 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2837 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2837 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2837 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2837 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1567 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1567 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1567 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1567 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3728 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1567 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
13:46:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:02 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.93) and
                      after (2023-09-02 12:00:00, weight 0.07) in time
13:46:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0811604436968 and -58.97010095544366 degrees.
13:46:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0811604436968 and -58.97010095544366 degrees.
13:46:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:02 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:02 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:02 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.806195 (min) 1.14288 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.985992 (min) 0.839841 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000167647 (min) 0.00061343 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.7363 (min) 7.9009 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.91871 (min) 4.29257 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2424 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1527:               4479 active elements
13:46:02 DEBUG   opendrift.models.basemodel:1538:               59.10312094395746 <- latitude  -> 59.18769097364262
13:46:02 DEBUG   opendrift.models.basemodel:1543:               10.918850123327397 <- longitude -> 11.029909597647137
13:46:02 DEBUG   opendrift.models.basemodel:1548:               -14.881341934204102   <- z ->   0.0
13:46:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:02 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:02 DEBUG   opendrift.models.physics_methods:1049:    min: 0.021043, mean: 2.993588, max: 8.077115
13:46:02 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.021043, mean: 2.993588, max: 8.077115
13:46:02 DEBUG   opendrift.models.basemodel:813: 690 elements hit coastline, moving back to water
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:46:02 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:02 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:02 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 4479 elements above 0.100m with wind-sheared ocean current (0.005421 m/s - 0.161707 m/s)
13:46:02 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:02 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:02 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08073034933908461
13:46:02 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:02 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:02 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:02 DEBUG   opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 335 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 327 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 322 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 35 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 280 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 283 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:46:02 DEBUG   opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
13:46:02 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:02 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:02 DEBUG   opendrift.models.basemodel:2945: 4479 active elements (0 deactivated)
13:46:02 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5521, already seeded 4479
13:46:02 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 4514 elements
13:46:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:02 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.221 (max)
13:46:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1527:               4514 active elements
13:46:02 DEBUG   opendrift.models.basemodel:1538:               59.10265645306733 <- latitude  -> 59.18741769394635
13:46:02 DEBUG   opendrift.models.basemodel:1543:               10.919741925422404 <- longitude -> 11.030215915404595
13:46:02 DEBUG   opendrift.models.basemodel:1548:               -14.879795011614098   <- z ->   0.0
13:46:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:836: Lifting 368 elements to seafloor.
13:46:02 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:02 INFO    opendrift.models.basemodel:2882: 2023-09-02 11:13:54.338376 - step 130 of 216 - 4514 active elements (0 deactivated)
13:46:02 DEBUG   opendrift.models.basemodel:2888: 5486 elements scheduled.
13:46:02 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 4514 elements
13:46:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:02 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:02 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 4514 elements
13:46:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:03 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:03 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 12:00:00)
13:46:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:03 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2887 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2887 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2887 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2887 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2887 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2810 elements, expanding data 1
13:46:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
13:46:03 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.77) and
                      after (2023-09-02 12:00:00, weight 0.23) in time
13:46:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08026863715765 and -58.96979464272141 degrees.
13:46:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08026863715765 and -58.96979464272141 degrees.
13:46:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:03 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:03 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:03 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.855633 (min) 1.16247 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.13769 (min) 0.842981 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000166848 (min) 0.000640613 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.06731 (min) 7.8982 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.84609 (min) 4.70351 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.221 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1527:               4514 active elements
13:46:03 DEBUG   opendrift.models.basemodel:1538:               59.10265645306733 <- latitude  -> 59.18741769394635
13:46:03 DEBUG   opendrift.models.basemodel:1543:               10.919741925422404 <- longitude -> 11.030215915404595
13:46:03 DEBUG   opendrift.models.basemodel:1548:               -14.879795011614098   <- z ->   0.0
13:46:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:03 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:03 DEBUG   opendrift.models.physics_methods:1049:    min: 0.075004, mean: 3.058005, max: 8.765810
13:46:03 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.075004, mean: 3.058005, max: 8.765810
13:46:03 DEBUG   opendrift.models.basemodel:813: 690 elements hit coastline, moving back to water
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:46:03 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:03 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:03 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 4514 elements above 0.100m with wind-sheared ocean current (0.001404 m/s - 0.135516 m/s)
13:46:03 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:03 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:03 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09508346989162444
13:46:03 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:03 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:03 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:03 DEBUG   opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 389 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 355 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 285 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:03 DEBUG   opendrift.models.oceandrift:582: 278 elements penetrated seafloor, lifting up
13:46:03 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:03 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:03 DEBUG   opendrift.models.basemodel:2945: 4514 active elements (0 deactivated)
13:46:03 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5486, already seeded 4514
13:46:03 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 4549 elements
13:46:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:03 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2506 (max)
13:46:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1527:               4549 active elements
13:46:03 DEBUG   opendrift.models.basemodel:1538:               59.10082811579942 <- latitude  -> 59.18792569593427
13:46:03 DEBUG   opendrift.models.basemodel:1543:               10.915536155206238 <- longitude -> 11.029718587085538
13:46:03 DEBUG   opendrift.models.basemodel:1548:               -15.220958709716797   <- z ->   0.0
13:46:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:836: Lifting 384 elements to seafloor.
13:46:03 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:03 INFO    opendrift.models.basemodel:2882: 2023-09-02 11:23:54.338376 - step 131 of 216 - 4549 active elements (0 deactivated)
13:46:03 DEBUG   opendrift.models.basemodel:2888: 5451 elements scheduled.
13:46:03 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 4549 elements
13:46:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:03 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:03 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 4549 elements
13:46:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:04 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:04 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x6) for time after (2023-09-02 12:00:00)
13:46:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:04 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2906 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2906 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2906 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2906 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2906 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2906 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 3
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3786 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3786 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3786 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3786 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3786 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3786 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2836 elements, expanding data 1
13:46:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 2
13:46:04 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.60) and
                      after (2023-09-02 12:00:00, weight 0.40) in time
13:46:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0844744182838 and -58.970291966830764 degrees.
13:46:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0844744182838 and -58.970291966830764 degrees.
13:46:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:04 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:04 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:04 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.826292 (min) 1.2853 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.927896 (min) 0.764973 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000189365 (min) 0.000627197 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.54313 (min) 8.50262 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.0533 (min) 4.23647 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2506 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1527:               4549 active elements
13:46:04 DEBUG   opendrift.models.basemodel:1538:               59.10082811579942 <- latitude  -> 59.18792569593427
13:46:04 DEBUG   opendrift.models.basemodel:1543:               10.915536155206238 <- longitude -> 11.029718587085538
13:46:04 DEBUG   opendrift.models.basemodel:1548:               -15.220958709716797   <- z ->   0.0
13:46:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:04 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:04 DEBUG   opendrift.models.physics_methods:1049:    min: 0.019466, mean: 3.093042, max: 9.936064
13:46:04 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.019466, mean: 3.093042, max: 9.936064
13:46:04 DEBUG   opendrift.models.basemodel:813: 721 elements hit coastline, moving back to water
13:46:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:04 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:04 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:04 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 4549 elements above 0.100m with wind-sheared ocean current (0.003040 m/s - 0.155712 m/s)
13:46:04 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:04 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:04 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12216467519004821
13:46:04 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:04 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:04 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:04 DEBUG   opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 377 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 343 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 318 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 282 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:04 DEBUG   opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
13:46:04 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:04 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:04 DEBUG   opendrift.models.basemodel:2945: 4549 active elements (0 deactivated)
13:46:04 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5451, already seeded 4549
13:46:04 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 4583 elements
13:46:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:04 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2506 (max)
13:46:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1527:               4583 active elements
13:46:04 DEBUG   opendrift.models.basemodel:1538:               59.10218099113348 <- latitude  -> 59.1876079029505
13:46:04 DEBUG   opendrift.models.basemodel:1543:               10.911802078060116 <- longitude -> 11.029365939301423
13:46:04 DEBUG   opendrift.models.basemodel:1548:               -15.220958709716797   <- z ->   0.0
13:46:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:836: Lifting 361 elements to seafloor.
13:46:04 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:04 INFO    opendrift.models.basemodel:2882: 2023-09-02 11:33:54.338376 - step 132 of 216 - 4583 active elements (0 deactivated)
13:46:04 DEBUG   opendrift.models.basemodel:2888: 5417 elements scheduled.
13:46:04 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 4583 elements
13:46:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:04 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:04 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 4583 elements
13:46:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:05 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:05 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:05 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x6) for time after (2023-09-02 12:00:00)
13:46:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:05 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2963 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2963 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2963 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2963 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2963 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2963 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 231 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3849 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3849 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3849 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3849 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3849 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3849 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1654 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2891 elements, expanding data 1
13:46:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 2
13:46:05 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.43) and
                      after (2023-09-02 12:00:00, weight 0.57) in time
13:46:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.088208485544854 and -58.97064460916816 degrees.
13:46:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.088208485544854 and -58.97064460916816 degrees.
13:46:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:05 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:05 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:05 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.775428 (min) 1.23584 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.952385 (min) 0.819804 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000133471 (min) 0.000627527 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.63484 (min) 8.63623 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.40206 (min) 5.91283 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2506 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1527:               4583 active elements
13:46:05 DEBUG   opendrift.models.basemodel:1538:               59.10218099113348 <- latitude  -> 59.1876079029505
13:46:05 DEBUG   opendrift.models.basemodel:1543:               10.911802078060116 <- longitude -> 11.029365939301423
13:46:05 DEBUG   opendrift.models.basemodel:1548:               -15.220958709716797   <- z ->   0.0
13:46:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:05 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:05 DEBUG   opendrift.models.physics_methods:1049:    min: 0.043296, mean: 3.148794, max: 9.135428
13:46:05 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.043296, mean: 3.148794, max: 9.135428
13:46:05 DEBUG   opendrift.models.basemodel:813: 730 elements hit coastline, moving back to water
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:46:05 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:05 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:05 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 4583 elements above 0.100m with wind-sheared ocean current (0.010196 m/s - 0.167351 m/s)
13:46:05 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:05 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:05 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10327075169809341
13:46:05 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:05 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:05 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:05 DEBUG   opendrift.models.oceandrift:582: 543 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 414 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 361 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 368 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 322 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:05 DEBUG   opendrift.models.oceandrift:582: 312 elements penetrated seafloor, lifting up
13:46:05 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:05 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:05 DEBUG   opendrift.models.basemodel:2945: 4583 active elements (0 deactivated)
13:46:05 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5417, already seeded 4583
13:46:05 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 4618 elements
13:46:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:05 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2506 (max)
13:46:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1527:               4618 active elements
13:46:05 DEBUG   opendrift.models.basemodel:1538:               59.10143935560681 <- latitude  -> 59.19052127785982
13:46:05 DEBUG   opendrift.models.basemodel:1543:               10.90843851366513 <- longitude -> 11.027415787227465
13:46:05 DEBUG   opendrift.models.basemodel:1548:               -15.210958709716797   <- z ->   0.0
13:46:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:836: Lifting 374 elements to seafloor.
13:46:05 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:05 INFO    opendrift.models.basemodel:2882: 2023-09-02 11:43:54.338376 - step 133 of 216 - 4618 active elements (0 deactivated)
13:46:05 DEBUG   opendrift.models.basemodel:2888: 5382 elements scheduled.
13:46:05 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 4618 elements
13:46:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:05 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:05 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 4618 elements
13:46:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:06 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:06 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x6) for time after (2023-09-02 12:00:00)
13:46:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:06 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3015 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3015 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3015 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3015 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3015 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3015 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1722 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 1
13:46:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:06 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.27) and
                      after (2023-09-02 12:00:00, weight 0.73) in time
13:46:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0915720459011 and -58.97259478750155 degrees.
13:46:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0915720459011 and -58.97259478750155 degrees.
13:46:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:06 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:06 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:06 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.719327 (min) 1.59805 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.16009 (min) 0.787124 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000183456 (min) 0.000638639 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.65457 (min) 8.74491 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1056 (min) 4.18982 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2506 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1527:               4618 active elements
13:46:06 DEBUG   opendrift.models.basemodel:1538:               59.10143935560681 <- latitude  -> 59.19052127785982
13:46:06 DEBUG   opendrift.models.basemodel:1543:               10.90843851366513 <- longitude -> 11.027415787227465
13:46:06 DEBUG   opendrift.models.basemodel:1548:               -15.210958709716797   <- z ->   0.0
13:46:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:06 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:06 DEBUG   opendrift.models.physics_methods:1049:    min: 0.026470, mean: 3.188076, max: 8.816320
13:46:06 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.026470, mean: 3.188076, max: 8.816320
13:46:06 DEBUG   opendrift.models.basemodel:813: 754 elements hit coastline, moving back to water
13:46:06 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:06 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:06 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:06 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 4618 elements above 0.100m with wind-sheared ocean current (0.006055 m/s - 0.171042 m/s)
13:46:06 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:06 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:06 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09618237559421539
13:46:06 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:06 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:06 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:06 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 36 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 323 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 340 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:06 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:46:06 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:06 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:06 DEBUG   opendrift.models.basemodel:2945: 4618 active elements (0 deactivated)
13:46:06 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5382, already seeded 4618
13:46:06 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 4653 elements
13:46:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:06 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2412 (max)
13:46:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1527:               4653 active elements
13:46:06 DEBUG   opendrift.models.basemodel:1538:               59.10192430755407 <- latitude  -> 59.18807886974384
13:46:06 DEBUG   opendrift.models.basemodel:1543:               10.90993923846652 <- longitude -> 11.02720670067307
13:46:06 DEBUG   opendrift.models.basemodel:1548:               -15.250588417053223   <- z ->   0.0
13:46:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:836: Lifting 366 elements to seafloor.
13:46:06 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:06 INFO    opendrift.models.basemodel:2882: 2023-09-02 11:53:54.338376 - step 134 of 216 - 4653 active elements (0 deactivated)
13:46:06 DEBUG   opendrift.models.basemodel:2888: 5347 elements scheduled.
13:46:06 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 4653 elements
13:46:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:06 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:06 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:06 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:06 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:06 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:06 DEBUG   opendrift.models.basemodel:1253: Data needed for 4653 elements
13:46:06 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:06 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 11:00:00 (before)
                2023-09-02 12:00:00 (after)
13:46:07 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:07 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x6) for time after (2023-09-02 12:00:00)
13:46:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 11:00:00) in space  (linearNDFast)
13:46:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:07 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3059 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3059 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3059 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3059 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3059 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3059 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 3
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3929 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3929 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3929 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3929 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3929 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3929 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1757 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2988 elements, expanding data 1
13:46:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
13:46:07 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 11:00:00, weight 0.10) and
                      after (2023-09-02 12:00:00, weight 0.90) in time
13:46:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0900713358114 and -58.97280385759022 degrees.
13:46:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0900713358114 and -58.97280385759022 degrees.
13:46:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:07 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:07 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:07 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.834473 (min) 1.15684 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.918832 (min) 0.758812 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000143261 (min) 0.0006264 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.68666 (min) 9.09762 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.1695 (min) 4.90213 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2412 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1527:               4653 active elements
13:46:07 DEBUG   opendrift.models.basemodel:1538:               59.10192430755407 <- latitude  -> 59.18807886974384
13:46:07 DEBUG   opendrift.models.basemodel:1543:               10.90993923846652 <- longitude -> 11.02720670067307
13:46:07 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:07 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:07 DEBUG   opendrift.models.physics_methods:1049:    min: 0.071395, mean: 3.229092, max: 8.760830
13:46:07 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.071395, mean: 3.229092, max: 8.760830
13:46:07 DEBUG   opendrift.models.basemodel:813: 775 elements hit coastline, moving back to water
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:46:07 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:07 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:07 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 4653 elements above 0.100m with wind-sheared ocean current (0.003353 m/s - 0.140333 m/s)
13:46:07 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:07 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:07 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09497548080499649
13:46:07 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:07 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:07 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:07 DEBUG   opendrift.models.oceandrift:582: 511 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 370 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 336 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:07 DEBUG   opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
13:46:07 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:07 DEBUG   opendrift.models.basemodel:2945: 4653 active elements (0 deactivated)
13:46:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5347, already seeded 4653
13:46:07 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 4688 elements
13:46:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:07 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2412 (max)
13:46:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1527:               4688 active elements
13:46:07 DEBUG   opendrift.models.basemodel:1538:               59.10176902605152 <- latitude  -> 59.187460901226274
13:46:07 DEBUG   opendrift.models.basemodel:1543:               10.912350420315743 <- longitude -> 11.028543472104975
13:46:07 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:836: Lifting 375 elements to seafloor.
13:46:07 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:07 INFO    opendrift.models.basemodel:2882: 2023-09-02 12:03:54.338376 - step 135 of 216 - 4688 active elements (0 deactivated)
13:46:07 DEBUG   opendrift.models.basemodel:2888: 5312 elements scheduled.
13:46:07 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 4688 elements
13:46:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:07 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:07 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 4688 elements
13:46:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:08 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:08 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x6) for time after (2023-09-02 13:00:00)
13:46:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:08 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3126 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3126 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3126 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3126 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3126 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3126 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3958 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1791 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3060 elements, expanding data 1
13:46:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
13:46:08 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.93) and
                      after (2023-09-02 13:00:00, weight 0.07) in time
13:46:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.087660153822014 and -58.97146710791563 degrees.
13:46:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.087660153822014 and -58.97146710791563 degrees.
13:46:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:08 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:08 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:08 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.81067 (min) 1.20501 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.964481 (min) 0.843721 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000154214 (min) 0.00059575 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.71469 (min) 8.51308 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.72692 (min) 6.47554 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2412 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1527:               4688 active elements
13:46:08 DEBUG   opendrift.models.basemodel:1538:               59.10176902605152 <- latitude  -> 59.187460901226274
13:46:08 DEBUG   opendrift.models.basemodel:1543:               10.912350420315743 <- longitude -> 11.028543472104975
13:46:08 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:08 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:08 DEBUG   opendrift.models.physics_methods:1049:    min: 0.057169, mean: 3.262848, max: 9.288932
13:46:08 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.057169, mean: 3.262848, max: 9.288932
13:46:08 DEBUG   opendrift.models.basemodel:813: 756 elements hit coastline, moving back to water
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
13:46:08 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:08 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:08 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 4688 elements above 0.100m with wind-sheared ocean current (0.003248 m/s - 0.147780 m/s)
13:46:08 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:08 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:08 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10677030255420684
13:46:08 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:08 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:08 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:08 DEBUG   opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 373 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 362 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 305 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 34 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
13:46:08 DEBUG   opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
13:46:08 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:08 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:08 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:08 DEBUG   opendrift.models.basemodel:2945: 4688 active elements (0 deactivated)
13:46:08 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5312, already seeded 4688
13:46:08 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 4722 elements
13:46:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:08 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2412 (max)
13:46:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1527:               4722 active elements
13:46:08 DEBUG   opendrift.models.basemodel:1538:               59.10150076020268 <- latitude  -> 59.188679047050556
13:46:08 DEBUG   opendrift.models.basemodel:1543:               10.912323490259647 <- longitude -> 11.026646708622227
13:46:08 DEBUG   opendrift.models.basemodel:1548:               -15.231178512573242   <- z ->   0.0
13:46:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:836: Lifting 346 elements to seafloor.
13:46:08 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:08 INFO    opendrift.models.basemodel:2882: 2023-09-02 12:13:54.338376 - step 136 of 216 - 4722 active elements (0 deactivated)
13:46:08 DEBUG   opendrift.models.basemodel:2888: 5278 elements scheduled.
13:46:08 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 4722 elements
13:46:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:08 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:08 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 4722 elements
13:46:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x6) for time after (2023-09-02 13:00:00)
13:46:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3172 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3172 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3172 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3172 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3172 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3172 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3985 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1810 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3985 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1810 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3985 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1810 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3985 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1810 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3985 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1810 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3985 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1810 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3110 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
13:46:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.77) and
                      after (2023-09-02 13:00:00, weight 0.23) in time
13:46:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08768707562407 and -58.973363859389664 degrees.
13:46:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08768707562407 and -58.973363859389664 degrees.
13:46:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.820901 (min) 1.29132 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07858 (min) 0.789438 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000152104 (min) 0.000654565 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.28195 (min) 8.14466 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -10.3129 (min) 5.1473 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2412 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1527:               4722 active elements
13:46:15 DEBUG   opendrift.models.basemodel:1538:               59.10150076020268 <- latitude  -> 59.188679047050556
13:46:15 DEBUG   opendrift.models.basemodel:1543:               10.912323490259647 <- longitude -> 11.026646708622227
13:46:15 DEBUG   opendrift.models.basemodel:1548:               -15.231178512573242   <- z ->   0.0
13:46:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:15 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:15 DEBUG   opendrift.models.physics_methods:1049:    min: 0.065787, mean: 3.150346, max: 8.831605
13:46:15 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.065787, mean: 3.150346, max: 8.831605
13:46:15 DEBUG   opendrift.models.basemodel:813: 828 elements hit coastline, moving back to water
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:15 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 4722 elements above 0.100m with wind-sheared ocean current (0.008764 m/s - 0.125350 m/s)
13:46:15 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09651615041358948
13:46:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:15 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 374 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 336 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:15 DEBUG   opendrift.models.oceandrift:582: 303 elements penetrated seafloor, lifting up
13:46:15 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:15 DEBUG   opendrift.models.basemodel:2945: 4722 active elements (0 deactivated)
13:46:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5278, already seeded 4722
13:46:15 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 4757 elements
13:46:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2427 (max)
13:46:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1527:               4757 active elements
13:46:15 DEBUG   opendrift.models.basemodel:1538:               59.10024337289726 <- latitude  -> 59.1866936591843
13:46:15 DEBUG   opendrift.models.basemodel:1543:               10.911722241188006 <- longitude -> 11.029448954496756
13:46:15 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:836: Lifting 375 elements to seafloor.
13:46:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:15 INFO    opendrift.models.basemodel:2882: 2023-09-02 12:23:54.338376 - step 137 of 216 - 4757 active elements (0 deactivated)
13:46:15 DEBUG   opendrift.models.basemodel:2888: 5243 elements scheduled.
13:46:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 4757 elements
13:46:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 4757 elements
13:46:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:16 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:16 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:16 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 13:00:00)
13:46:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:16 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4031 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4031 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4031 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4031 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4031 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4031 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3141 elements, expanding data 1
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 2
13:46:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:16 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.60) and
                      after (2023-09-02 13:00:00, weight 0.40) in time
13:46:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08828832098487 and -58.97056159150811 degrees.
13:46:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08828832098487 and -58.97056159150811 degrees.
13:46:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:16 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:16 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:16 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.715071 (min) 1.26815 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01665 (min) 0.775355 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000141108 (min) 0.000669073 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.16437 (min) 9.17164 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.81946 (min) 6.11962 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2427 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1527:               4757 active elements
13:46:16 DEBUG   opendrift.models.basemodel:1538:               59.10024337289726 <- latitude  -> 59.1866936591843
13:46:16 DEBUG   opendrift.models.basemodel:1543:               10.911722241188006 <- longitude -> 11.029448954496756
13:46:16 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:16 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:16 DEBUG   opendrift.models.physics_methods:1049:    min: 0.113262, mean: 3.070367, max: 10.343866
13:46:16 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.113262, mean: 3.070367, max: 10.343866
13:46:16 DEBUG   opendrift.models.basemodel:813: 848 elements hit coastline, moving back to water
13:46:16 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:16 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:16 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:16 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 4757 elements above 0.100m with wind-sheared ocean current (0.009826 m/s - 0.139219 m/s)
13:46:16 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:16 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:16 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.132398011646347
13:46:16 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:16 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:16 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:16 DEBUG   opendrift.models.oceandrift:582: 534 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 382 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 301 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:16 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:46:16 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:16 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:16 DEBUG   opendrift.models.basemodel:2945: 4757 active elements (0 deactivated)
13:46:16 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5243, already seeded 4757
13:46:16 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 4792 elements
13:46:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:16 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2427 (max)
13:46:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1527:               4792 active elements
13:46:16 DEBUG   opendrift.models.basemodel:1538:               59.101791104867715 <- latitude  -> 59.18827694351357
13:46:16 DEBUG   opendrift.models.basemodel:1543:               10.91172224118801 <- longitude -> 11.0270797573066
13:46:16 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:836: Lifting 410 elements to seafloor.
13:46:16 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:16 INFO    opendrift.models.basemodel:2882: 2023-09-02 12:33:54.338376 - step 138 of 216 - 4792 active elements (0 deactivated)
13:46:16 DEBUG   opendrift.models.basemodel:2888: 5208 elements scheduled.
13:46:16 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 4792 elements
13:46:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:16 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:16 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 4792 elements
13:46:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:17 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:17 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 13:00:00)
13:46:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:17 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3235 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3235 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3235 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3235 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3235 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3235 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4070 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4070 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4070 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4070 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4070 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4070 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1858 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3165 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:17 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.43) and
                      after (2023-09-02 13:00:00, weight 0.57) in time
13:46:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08828832098487 and -58.972930788481534 degrees.
13:46:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08828832098487 and -58.972930788481534 degrees.
13:46:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:17 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:17 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:17 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.799805 (min) 1.27387 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.938636 (min) 0.805765 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000170376 (min) 0.000770719 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.65594 (min) 8.31983 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.15721 (min) 5.53836 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2427 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1527:               4792 active elements
13:46:17 DEBUG   opendrift.models.basemodel:1538:               59.101791104867715 <- latitude  -> 59.18827694351357
13:46:17 DEBUG   opendrift.models.basemodel:1543:               10.91172224118801 <- longitude -> 11.0270797573066
13:46:17 DEBUG   opendrift.models.basemodel:1548:               -15.241178512573242   <- z ->   0.0
13:46:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:17 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:17 DEBUG   opendrift.models.physics_methods:1049:    min: 0.083807, mean: 3.057244, max: 8.764673
13:46:17 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.083807, mean: 3.057244, max: 8.764673
13:46:17 DEBUG   opendrift.models.basemodel:813: 822 elements hit coastline, moving back to water
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:46:17 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:17 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:17 DEBUG   opendrift.models.physics_methods:835: Advecting 43 of 4792 elements above 0.100m with wind-sheared ocean current (0.008018 m/s - 0.160038 m/s)
13:46:17 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:17 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:17 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09505881416376114
13:46:17 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:17 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:17 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:17 DEBUG   opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 371 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 314 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 330 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 33 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 321 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:17 DEBUG   opendrift.models.oceandrift:582: 329 elements penetrated seafloor, lifting up
13:46:17 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:17 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:17 DEBUG   opendrift.models.basemodel:2945: 4792 active elements (0 deactivated)
13:46:17 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5208, already seeded 4792
13:46:17 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 4826 elements
13:46:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:17 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2427 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1527:               4826 active elements
13:46:17 DEBUG   opendrift.models.basemodel:1538:               59.10232917708605 <- latitude  -> 59.188642394734785
13:46:17 DEBUG   opendrift.models.basemodel:1543:               10.91578038725783 <- longitude -> 11.02683329768647
13:46:17 DEBUG   opendrift.models.basemodel:1548:               -15.231178512573242   <- z ->   0.0
13:46:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:836: Lifting 377 elements to seafloor.
13:46:17 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:17 INFO    opendrift.models.basemodel:2882: 2023-09-02 12:43:54.338376 - step 139 of 216 - 4826 active elements (0 deactivated)
13:46:17 DEBUG   opendrift.models.basemodel:2888: 5174 elements scheduled.
13:46:17 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 4826 elements
13:46:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 4826 elements
13:46:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:17 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:17 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 13:00:00)
13:46:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:17 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4083 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4083 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4083 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4083 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4083 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4083 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1853 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3174 elements, expanding data 1
13:46:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
13:46:17 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.27) and
                      after (2023-09-02 13:00:00, weight 0.73) in time
13:46:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.084230182758674 and -58.97317724257779 degrees.
13:46:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.084230182758674 and -58.97317724257779 degrees.
13:46:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:17 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:17 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:17 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.807155 (min) 1.27193 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.978668 (min) 0.911972 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.46438e-05 (min) 0.000637424 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.63205 (min) 10.038 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.1491 (min) 5.2366 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2427 (max)
13:46:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:17 DEBUG   opendrift.models.basemodel:1527:               4826 active elements
13:46:17 DEBUG   opendrift.models.basemodel:1538:               59.10232917708605 <- latitude  -> 59.188642394734785
13:46:17 DEBUG   opendrift.models.basemodel:1543:               10.91578038725783 <- longitude -> 11.02683329768647
13:46:17 DEBUG   opendrift.models.basemodel:1548:               -15.231178512573242   <- z ->   0.0
13:46:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.015992, mean: 3.020199, max: 8.963455
13:46:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.015992, mean: 3.020199, max: 8.963455
13:46:18 DEBUG   opendrift.models.basemodel:813: 838 elements hit coastline, moving back to water
13:46:18 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:18 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 4826 elements above 0.100m with wind-sheared ocean current (0.002627 m/s - 0.156805 m/s)
13:46:18 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09941939105947493
13:46:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:18 DEBUG   opendrift.models.oceandrift:582: 504 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 360 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 357 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 331 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 329 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 287 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:18 DEBUG   opendrift.models.basemodel:2945: 4826 active elements (0 deactivated)
13:46:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5174, already seeded 4826
13:46:18 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 4861 elements
13:46:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:18 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3075 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1527:               4861 active elements
13:46:18 DEBUG   opendrift.models.basemodel:1538:               59.101809688290686 <- latitude  -> 59.190283871537346
13:46:18 DEBUG   opendrift.models.basemodel:1543:               10.915858538121054 <- longitude -> 11.031901724180665
13:46:18 DEBUG   opendrift.models.basemodel:1548:               -14.94147705078125   <- z ->   0.0
13:46:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 398 elements to seafloor.
13:46:18 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:18 INFO    opendrift.models.basemodel:2882: 2023-09-02 12:53:54.338376 - step 140 of 216 - 4861 active elements (0 deactivated)
13:46:18 DEBUG   opendrift.models.basemodel:2888: 5139 elements scheduled.
13:46:18 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 4861 elements
13:46:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:18 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 4861 elements
13:46:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 12:00:00 (before)
                2023-09-02 13:00:00 (after)
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 13:00:00)
13:46:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 12:00:00) in space  (linearNDFast)
13:46:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3280 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3280 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3280 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3280 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3280 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1911 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1911 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1911 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1911 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1911 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
13:46:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 12:00:00, weight 0.10) and
                      after (2023-09-02 13:00:00, weight 0.90) in time
13:46:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08415201323703 and -58.96810882869095 degrees.
13:46:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08415201323703 and -58.96810882869095 degrees.
13:46:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.852575 (min) 1.26346 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.970448 (min) 0.893315 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.67689e-05 (min) 0.000622396 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.45131 (min) 10.0119 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.0884 (min) 5.1228 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3075 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1527:               4861 active elements
13:46:18 DEBUG   opendrift.models.basemodel:1538:               59.101809688290686 <- latitude  -> 59.190283871537346
13:46:18 DEBUG   opendrift.models.basemodel:1543:               10.915858538121054 <- longitude -> 11.031901724180665
13:46:18 DEBUG   opendrift.models.basemodel:1548:               -14.875   <- z ->   0.0
13:46:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.026841, mean: 2.980427, max: 8.652716
13:46:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.026841, mean: 2.980427, max: 8.652716
13:46:18 DEBUG   opendrift.models.basemodel:813: 850 elements hit coastline, moving back to water
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 116 elements to seafloor.
13:46:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:18 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 4861 elements above 0.100m with wind-sheared ocean current (0.016590 m/s - 0.163969 m/s)
13:46:18 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09264594266469955
13:46:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:18 DEBUG   opendrift.models.oceandrift:582: 555 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 318 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 342 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 295 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:18 DEBUG   opendrift.models.oceandrift:582: 300 elements penetrated seafloor, lifting up
13:46:18 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:18 DEBUG   opendrift.models.basemodel:2945: 4861 active elements (0 deactivated)
13:46:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5139, already seeded 4861
13:46:18 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 4896 elements
13:46:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:18 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2916 (max)
13:46:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1527:               4896 active elements
13:46:18 DEBUG   opendrift.models.basemodel:1538:               59.10126826909037 <- latitude  -> 59.18979041654073
13:46:18 DEBUG   opendrift.models.basemodel:1543:               10.918092612690968 <- longitude -> 11.03374658077755
13:46:18 DEBUG   opendrift.models.basemodel:1548:               -14.914677848815918   <- z ->   0.0
13:46:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:836: Lifting 418 elements to seafloor.
13:46:18 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:18 INFO    opendrift.models.basemodel:2882: 2023-09-02 13:03:54.338376 - step 141 of 216 - 4896 active elements (0 deactivated)
13:46:18 DEBUG   opendrift.models.basemodel:2888: 5104 elements scheduled.
13:46:18 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 4896 elements
13:46:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:18 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:18 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 4896 elements
13:46:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:19 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:19 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:19 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 25x24x5) for time after (2023-09-02 14:00:00)
13:46:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:19 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1917 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1917 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1917 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1917 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1917 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3233 elements, expanding data 1
13:46:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:19 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.93) and
                      after (2023-09-02 14:00:00, weight 0.07) in time
13:46:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0819179592481 and -58.96626396940509 degrees.
13:46:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0819179592481 and -58.96626396940509 degrees.
13:46:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:19 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:19 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:19 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.715781 (min) 1.22695 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0775 (min) 0.952517 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000111895 (min) 0.000777812 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.8001 (min) 9.54289 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.99751 (min) 5.17033 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2916 (max)
13:46:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:19 DEBUG   opendrift.models.basemodel:1527:               4896 active elements
13:46:19 DEBUG   opendrift.models.basemodel:1538:               59.10126826909037 <- latitude  -> 59.18979041654073
13:46:19 DEBUG   opendrift.models.basemodel:1543:               10.918092612690968 <- longitude -> 11.03374658077755
13:46:19 DEBUG   opendrift.models.basemodel:1548:               -14.914677848815918   <- z ->   0.0
13:46:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:19 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:19 DEBUG   opendrift.models.physics_methods:1049:    min: 0.025827, mean: 2.940642, max: 8.664943
13:46:19 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.025827, mean: 2.940642, max: 8.664943
13:46:19 DEBUG   opendrift.models.basemodel:813: 849 elements hit coastline, moving back to water
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:46:19 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:19 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:19 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 4896 elements above 0.100m with wind-sheared ocean current (0.007786 m/s - 0.144752 m/s)
13:46:19 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:19 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:19 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09290795722206115
13:46:19 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:19 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:19 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:19 DEBUG   opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:19 DEBUG   opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
13:46:19 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:19 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 292 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 316 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:20 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:20 DEBUG   opendrift.models.basemodel:2945: 4896 active elements (0 deactivated)
13:46:20 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5104, already seeded 4896
13:46:20 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 4931 elements
13:46:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:20 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2783 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1527:               4931 active elements
13:46:20 DEBUG   opendrift.models.basemodel:1538:               59.099961928025664 <- latitude  -> 59.188556170824214
13:46:20 DEBUG   opendrift.models.basemodel:1543:               10.917979105758084 <- longitude -> 11.03517685388317
13:46:20 DEBUG   opendrift.models.basemodel:1548:               -15.008543243408203   <- z ->   0.0
13:46:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 415 elements to seafloor.
13:46:20 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:20 INFO    opendrift.models.basemodel:2882: 2023-09-02 13:13:54.338376 - step 142 of 216 - 4931 active elements (0 deactivated)
13:46:20 DEBUG   opendrift.models.basemodel:2888: 5069 elements scheduled.
13:46:20 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 4931 elements
13:46:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:20 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 4931 elements
13:46:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:20 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:20 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 14:00:00)
13:46:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:20 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3344 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3344 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3344 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3344 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3344 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3344 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 3
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4181 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1920 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4181 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1920 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4181 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1920 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4181 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1920 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4181 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1920 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4181 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1920 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3266 elements, expanding data 1
13:46:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 2
13:46:20 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.77) and
                      after (2023-09-02 14:00:00, weight 0.23) in time
13:46:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.082031459090565 and -58.964833707101754 degrees.
13:46:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.082031459090565 and -58.964833707101754 degrees.
13:46:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:20 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:20 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:20 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.836042 (min) 1.34118 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00636 (min) 0.839882 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000112784 (min) 0.000723793 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.26481 (min) 9.44179 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.58472 (min) 5.69092 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2783 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1527:               4931 active elements
13:46:20 DEBUG   opendrift.models.basemodel:1538:               59.099961928025664 <- latitude  -> 59.188556170824214
13:46:20 DEBUG   opendrift.models.basemodel:1543:               10.917979105758084 <- longitude -> 11.03517685388317
13:46:20 DEBUG   opendrift.models.basemodel:1548:               -15.008543243408203   <- z ->   0.0
13:46:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:20 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:20 DEBUG   opendrift.models.physics_methods:1049:    min: 0.053095, mean: 2.955446, max: 8.536128
13:46:20 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.053095, mean: 2.955446, max: 8.536128
13:46:20 DEBUG   opendrift.models.basemodel:813: 885 elements hit coastline, moving back to water
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:20 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:20 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:20 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 4931 elements above 0.100m with wind-sheared ocean current (0.003168 m/s - 0.104187 m/s)
13:46:20 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:20 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:20 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09016621909721374
13:46:20 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:20 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:20 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:20 DEBUG   opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 351 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 308 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:20 DEBUG   opendrift.models.oceandrift:582: 334 elements penetrated seafloor, lifting up
13:46:20 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:20 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:20 DEBUG   opendrift.models.basemodel:2945: 4931 active elements (0 deactivated)
13:46:20 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5069, already seeded 4931
13:46:20 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 4965 elements
13:46:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:20 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3285 (max)
13:46:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1527:               4965 active elements
13:46:20 DEBUG   opendrift.models.basemodel:1538:               59.100227897020325 <- latitude  -> 59.190433671576116
13:46:20 DEBUG   opendrift.models.basemodel:1543:               10.916092941683575 <- longitude -> 11.032699137332711
13:46:20 DEBUG   opendrift.models.basemodel:1548:               -14.820618629455566   <- z ->   0.0
13:46:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:836: Lifting 392 elements to seafloor.
13:46:20 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:20 INFO    opendrift.models.basemodel:2882: 2023-09-02 13:23:54.338376 - step 143 of 216 - 4965 active elements (0 deactivated)
13:46:20 DEBUG   opendrift.models.basemodel:2888: 5035 elements scheduled.
13:46:20 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 4965 elements
13:46:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:20 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:20 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 4965 elements
13:46:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:21 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:21 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
13:46:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:21 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3382 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3382 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3382 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3382 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3382 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4207 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1951 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4207 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1951 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4207 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1951 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4207 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1951 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4207 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1951 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3298 elements, expanding data 1
13:46:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:21 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.60) and
                      after (2023-09-02 14:00:00, weight 0.40) in time
13:46:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.083917640620285 and -58.96731142136958 degrees.
13:46:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.083917640620285 and -58.96731142136958 degrees.
13:46:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:21 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:21 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:21 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.736181 (min) 1.11766 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0265 (min) 0.893461 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.21203e-05 (min) 0.000690238 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.90356 (min) 10.2918 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.81002 (min) 5.97212 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3285 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1527:               4965 active elements
13:46:21 DEBUG   opendrift.models.basemodel:1538:               59.100227897020325 <- latitude  -> 59.190433671576116
13:46:21 DEBUG   opendrift.models.basemodel:1543:               10.916092941683575 <- longitude -> 11.032699137332711
13:46:21 DEBUG   opendrift.models.basemodel:1548:               -14.820618629455566   <- z ->   0.0
13:46:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:21 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:21 DEBUG   opendrift.models.physics_methods:1049:    min: 0.009570, mean: 2.933447, max: 8.812961
13:46:21 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.009570, mean: 2.933447, max: 8.812961
13:46:21 DEBUG   opendrift.models.basemodel:813: 838 elements hit coastline, moving back to water
13:46:21 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:21 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:21 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:21 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 4965 elements above 0.100m with wind-sheared ocean current (0.001241 m/s - 0.126403 m/s)
13:46:21 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:21 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:21 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09610909697015761
13:46:21 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:21 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:21 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:21 DEBUG   opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 400 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 370 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 355 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 313 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 299 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:21 DEBUG   opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
13:46:21 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:21 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:21 DEBUG   opendrift.models.basemodel:2945: 4965 active elements (0 deactivated)
13:46:21 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5035, already seeded 4965
13:46:21 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 5000 elements
13:46:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:21 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.281 (max)
13:46:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1527:               5000 active elements
13:46:21 DEBUG   opendrift.models.basemodel:1538:               59.10126564919415 <- latitude  -> 59.18939549026798
13:46:21 DEBUG   opendrift.models.basemodel:1543:               10.916096107946565 <- longitude -> 11.029742318674028
13:46:21 DEBUG   opendrift.models.basemodel:1548:               -14.810618629455567   <- z ->   0.0
13:46:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:836: Lifting 401 elements to seafloor.
13:46:21 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:21 INFO    opendrift.models.basemodel:2882: 2023-09-02 13:33:54.338376 - step 144 of 216 - 5000 active elements (0 deactivated)
13:46:21 DEBUG   opendrift.models.basemodel:2888: 5000 elements scheduled.
13:46:21 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 5000 elements
13:46:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:21 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:21 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 5000 elements
13:46:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:22 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:22 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 14:00:00)
13:46:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:22 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3376 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3376 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3376 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3376 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3376 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4254 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1989 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4254 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1989 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4254 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1989 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4254 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1989 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4254 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1989 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3302 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
13:46:22 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.43) and
                      after (2023-09-02 14:00:00, weight 0.57) in time
13:46:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.083914457255005 and -58.97026823298805 degrees.
13:46:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.083914457255005 and -58.97026823298805 degrees.
13:46:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:22 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:22 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:22 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.793417 (min) 1.17161 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.16841 (min) 0.799509 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.23891e-05 (min) 0.00065322 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.62743 (min) 9.22161 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.45983 (min) 6.67542 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.281 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1527:               5000 active elements
13:46:22 DEBUG   opendrift.models.basemodel:1538:               59.10126564919415 <- latitude  -> 59.18939549026798
13:46:22 DEBUG   opendrift.models.basemodel:1543:               10.916096107946565 <- longitude -> 11.029742318674028
13:46:22 DEBUG   opendrift.models.basemodel:1548:               -14.810618629455567   <- z ->   0.0
13:46:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:22 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:22 DEBUG   opendrift.models.physics_methods:1049:    min: 0.064778, mean: 2.935619, max: 7.977350
13:46:22 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.064778, mean: 2.935619, max: 7.977350
13:46:22 DEBUG   opendrift.models.basemodel:813: 815 elements hit coastline, moving back to water
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
13:46:22 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:22 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:22 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 5000 elements above 0.100m with wind-sheared ocean current (0.007263 m/s - 0.117957 m/s)
13:46:22 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:22 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:22 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0787484631410408
13:46:22 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:22 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:22 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:22 DEBUG   opendrift.models.oceandrift:582: 491 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 419 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 377 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 336 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 321 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 305 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:22 DEBUG   opendrift.models.oceandrift:582: 307 elements penetrated seafloor, lifting up
13:46:22 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:22 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:22 DEBUG   opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
13:46:22 DEBUG   opendrift.models.basemodel:1658: to be seeded: 5000, already seeded 5000
13:46:22 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 5035 elements
13:46:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:22 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3185 (max)
13:46:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1527:               5035 active elements
13:46:22 DEBUG   opendrift.models.basemodel:1538:               59.10163700320116 <- latitude  -> 59.18863057045661
13:46:22 DEBUG   opendrift.models.basemodel:1543:               10.91852263247118 <- longitude -> 11.03227419192126
13:46:22 DEBUG   opendrift.models.basemodel:1548:               -14.22829818725586   <- z ->   0.0
13:46:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:836: Lifting 391 elements to seafloor.
13:46:22 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:22 INFO    opendrift.models.basemodel:2882: 2023-09-02 13:43:54.338376 - step 145 of 216 - 5035 active elements (0 deactivated)
13:46:22 DEBUG   opendrift.models.basemodel:2888: 4965 elements scheduled.
13:46:22 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 5035 elements
13:46:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:22 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:22 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 5035 elements
13:46:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:23 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:23 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:23 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 14:00:00)
13:46:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:23 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3420 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3420 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3420 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3420 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3420 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4301 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4301 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4301 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4301 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4301 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:23 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.27) and
                      after (2023-09-02 14:00:00, weight 0.73) in time
13:46:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.081487937226356 and -58.96773637661448 degrees.
13:46:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.081487937226356 and -58.96773637661448 degrees.
13:46:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:23 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:23 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:23 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.804286 (min) 1.28664 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.968089 (min) 0.966961 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.44943e-05 (min) 0.000680318 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.33902 (min) 9.89666 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.90301 (min) 5.65428 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3185 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1527:               5035 active elements
13:46:23 DEBUG   opendrift.models.basemodel:1538:               59.10163700320116 <- latitude  -> 59.18863057045661
13:46:23 DEBUG   opendrift.models.basemodel:1543:               10.91852263247118 <- longitude -> 11.03227419192126
13:46:23 DEBUG   opendrift.models.basemodel:1548:               -14.178770065307617   <- z ->   0.0
13:46:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:23 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:23 DEBUG   opendrift.models.physics_methods:1049:    min: 0.045119, mean: 2.985888, max: 8.599798
13:46:23 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.045119, mean: 2.985888, max: 8.599798
13:46:23 DEBUG   opendrift.models.basemodel:813: 857 elements hit coastline, moving back to water
13:46:23 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:23 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:23 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:23 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 5035 elements above 0.100m with wind-sheared ocean current (0.012220 m/s - 0.146288 m/s)
13:46:23 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:23 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:23 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09151623716457366
13:46:23 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:23 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:23 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:23 DEBUG   opendrift.models.oceandrift:582: 547 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 403 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 368 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 328 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 317 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:23 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:46:23 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:23 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:23 DEBUG   opendrift.models.basemodel:2945: 5035 active elements (0 deactivated)
13:46:23 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4965, already seeded 5035
13:46:23 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 5069 elements
13:46:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:23 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3638 (max)
13:46:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1527:               5069 active elements
13:46:23 DEBUG   opendrift.models.basemodel:1538:               59.10126229961855 <- latitude  -> 59.18849361868732
13:46:23 DEBUG   opendrift.models.basemodel:1543:               10.916774177714906 <- longitude -> 11.031967653914167
13:46:23 DEBUG   opendrift.models.basemodel:1548:               -14.219425247840253   <- z ->   0.0
13:46:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:836: Lifting 423 elements to seafloor.
13:46:23 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:23 INFO    opendrift.models.basemodel:2882: 2023-09-02 13:53:54.338376 - step 146 of 216 - 5069 active elements (0 deactivated)
13:46:23 DEBUG   opendrift.models.basemodel:2888: 4931 elements scheduled.
13:46:23 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 5069 elements
13:46:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:23 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:23 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 5069 elements
13:46:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 13:00:00 (before)
                2023-09-02 14:00:00 (after)
13:46:24 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:24 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 14:00:00)
13:46:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 13:00:00) in space  (linearNDFast)
13:46:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:24 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3439 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3439 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3439 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3439 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3439 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4327 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4327 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4327 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4327 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4327 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2076 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3358 elements, expanding data 1
13:46:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:24 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 13:00:00, weight 0.10) and
                      after (2023-09-02 14:00:00, weight 0.90) in time
13:46:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08323640183875 and -58.968042903116135 degrees.
13:46:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08323640183875 and -58.968042903116135 degrees.
13:46:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:24 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:24 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:24 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.763908 (min) 1.13765 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.925359 (min) 0.807162 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -3.56925e-05 (min) 0.000712008 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.65032 (min) 9.56322 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.65039 (min) 7.05296 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3638 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1527:               5069 active elements
13:46:24 DEBUG   opendrift.models.basemodel:1538:               59.10126229961855 <- latitude  -> 59.18849361868732
13:46:24 DEBUG   opendrift.models.basemodel:1543:               10.916774177714906 <- longitude -> 11.031967653914167
13:46:24 DEBUG   opendrift.models.basemodel:1548:               -14.219425247840253   <- z ->   0.0
13:46:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:24 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:24 DEBUG   opendrift.models.physics_methods:1049:    min: 0.070521, mean: 2.966439, max: 9.381194
13:46:24 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.070521, mean: 2.966439, max: 9.381194
13:46:24 DEBUG   opendrift.models.basemodel:813: 840 elements hit coastline, moving back to water
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 117 elements to seafloor.
13:46:24 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:24 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:24 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 5069 elements above 0.100m with wind-sheared ocean current (0.005911 m/s - 0.141387 m/s)
13:46:24 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:24 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:24 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10890177389677047
13:46:24 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:24 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:24 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:24 DEBUG   opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 377 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:24 DEBUG   opendrift.models.oceandrift:582: 270 elements penetrated seafloor, lifting up
13:46:24 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:24 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:24 DEBUG   opendrift.models.basemodel:2945: 5069 active elements (0 deactivated)
13:46:24 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4931, already seeded 5069
13:46:24 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 5104 elements
13:46:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:24 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4524 (max)
13:46:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1527:               5104 active elements
13:46:24 DEBUG   opendrift.models.basemodel:1538:               59.10044735794297 <- latitude  -> 59.18964120465537
13:46:24 DEBUG   opendrift.models.basemodel:1543:               10.916415666861012 <- longitude -> 11.03196765391417
13:46:24 DEBUG   opendrift.models.basemodel:1548:               -15.128205528259278   <- z ->   0.0
13:46:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:836: Lifting 445 elements to seafloor.
13:46:24 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:24 INFO    opendrift.models.basemodel:2882: 2023-09-02 14:03:54.338376 - step 147 of 216 - 5104 active elements (0 deactivated)
13:46:24 DEBUG   opendrift.models.basemodel:2888: 4896 elements scheduled.
13:46:24 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 5104 elements
13:46:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:24 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:24 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 5104 elements
13:46:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:25 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:25 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:25 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:25 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:25 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:25 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:25 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 15:00:00)
13:46:25 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:25 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3466 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 252 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3466 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 252 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3466 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 252 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3466 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 252 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3466 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 252 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3466 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 252 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2086 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2086 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2086 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2086 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2086 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2086 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:25 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.93) and
                      after (2023-09-02 15:00:00, weight 0.07) in time
13:46:25 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.083594897610574 and -58.968042903116135 degrees.
13:46:25 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.083594897610574 and -58.968042903116135 degrees.
13:46:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:25 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:25 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:25 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:25 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:25 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.731886 (min) 1.25527 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.947346 (min) 0.779799 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -1.33079e-05 (min) 0.000684755 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.70207 (min) 9.24381 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.43844 (min) 6.1196 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4524 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1527:               5104 active elements
13:46:25 DEBUG   opendrift.models.basemodel:1538:               59.10044735794297 <- latitude  -> 59.18964120465537
13:46:25 DEBUG   opendrift.models.basemodel:1543:               10.916415666861012 <- longitude -> 11.03196765391417
13:46:25 DEBUG   opendrift.models.basemodel:1548:               -15.128205528259278   <- z ->   0.0
13:46:25 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:25 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:25 DEBUG   opendrift.models.physics_methods:1049:    min: 0.036722, mean: 2.958435, max: 8.352780
13:46:25 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.036722, mean: 2.958435, max: 8.352780
13:46:25 DEBUG   opendrift.models.basemodel:813: 851 elements hit coastline, moving back to water
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:46:25 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:25 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:25 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 5104 elements above 0.100m with wind-sheared ocean current (0.000958 m/s - 0.139632 m/s)
13:46:25 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:25 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:25 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08633461482055664
13:46:25 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:25 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:25 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:25 DEBUG   opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 402 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 338 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 315 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 304 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:25 DEBUG   opendrift.models.oceandrift:582: 310 elements penetrated seafloor, lifting up
13:46:25 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:25 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:25 DEBUG   opendrift.models.basemodel:2945: 5104 active elements (0 deactivated)
13:46:25 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4896, already seeded 5104
13:46:25 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 5139 elements
13:46:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:25 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:25 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:25 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:25 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:25 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:25 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5319 (max)
13:46:25 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1527:               5139 active elements
13:46:25 DEBUG   opendrift.models.basemodel:1538:               59.09811924712409 <- latitude  -> 59.18871087768085
13:46:25 DEBUG   opendrift.models.basemodel:1543:               10.917523024002666 <- longitude -> 11.03529147023478
13:46:25 DEBUG   opendrift.models.basemodel:1548:               -14.189230194091797   <- z ->   0.0
13:46:25 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:836: Lifting 426 elements to seafloor.
13:46:25 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:25 INFO    opendrift.models.basemodel:2882: 2023-09-02 14:13:54.338376 - step 148 of 216 - 5139 active elements (0 deactivated)
13:46:25 DEBUG   opendrift.models.basemodel:2888: 4861 elements scheduled.
13:46:25 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 5139 elements
13:46:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:25 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:25 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 5139 elements
13:46:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:25 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:26 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:26 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:26 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 15:00:00)
13:46:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:26 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3473 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4368 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4368 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4368 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4368 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4368 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3398 elements, expanding data 1
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
13:46:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:26 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.77) and
                      after (2023-09-02 15:00:00, weight 0.23) in time
13:46:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0824875465793 and -58.96471908266224 degrees.
13:46:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0824875465793 and -58.96471908266224 degrees.
13:46:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:26 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:26 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:26 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.718849 (min) 1.09455 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07042 (min) 0.861637 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -4.51867e-05 (min) 0.000681532 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.36108 (min) 11.0361 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.49326 (min) 6.06005 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5319 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1527:               5139 active elements
13:46:26 DEBUG   opendrift.models.basemodel:1538:               59.09811924712409 <- latitude  -> 59.18871087768085
13:46:26 DEBUG   opendrift.models.basemodel:1543:               10.917523024002666 <- longitude -> 11.03529147023478
13:46:26 DEBUG   opendrift.models.basemodel:1548:               -14.189230194091797   <- z ->   0.0
13:46:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:26 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:26 DEBUG   opendrift.models.physics_methods:1049:    min: 0.045665, mean: 2.980455, max: 9.453173
13:46:26 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.045665, mean: 2.980455, max: 9.453173
13:46:26 DEBUG   opendrift.models.basemodel:813: 843 elements hit coastline, moving back to water
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
13:46:26 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:26 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:26 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 5139 elements above 0.100m with wind-sheared ocean current (0.011313 m/s - 0.147896 m/s)
13:46:26 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:26 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:26 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11057926381547926
13:46:26 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:26 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:26 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:26 DEBUG   opendrift.models.oceandrift:582: 573 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 382 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 374 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 346 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 351 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:26 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:46:26 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:26 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:26 DEBUG   opendrift.models.basemodel:2945: 5139 active elements (0 deactivated)
13:46:26 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4861, already seeded 5139
13:46:26 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 5174 elements
13:46:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:26 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5604 (max)
13:46:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1527:               5174 active elements
13:46:26 DEBUG   opendrift.models.basemodel:1538:               59.097247387811684 <- latitude  -> 59.18982531822964
13:46:26 DEBUG   opendrift.models.basemodel:1543:               10.918597626382496 <- longitude -> 11.034225880335745
13:46:26 DEBUG   opendrift.models.basemodel:1548:               -14.656464854147043   <- z ->   0.0
13:46:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:836: Lifting 390 elements to seafloor.
13:46:26 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:26 INFO    opendrift.models.basemodel:2882: 2023-09-02 14:23:54.338376 - step 149 of 216 - 5174 active elements (0 deactivated)
13:46:26 DEBUG   opendrift.models.basemodel:2888: 4826 elements scheduled.
13:46:26 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 5174 elements
13:46:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:26 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:26 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 5174 elements
13:46:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:27 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:27 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:27 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-09-02 15:00:00)
13:46:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:27 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3476 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3476 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3476 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3476 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3476 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4377 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4377 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4377 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4377 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4377 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3394 elements, expanding data 1
13:46:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:27 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.60) and
                      after (2023-09-02 15:00:00, weight 0.40) in time
13:46:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0814129480247 and -58.965784667899264 degrees.
13:46:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0814129480247 and -58.965784667899264 degrees.
13:46:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:27 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:27 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:27 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.799169 (min) 1.05034 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05242 (min) 0.947496 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -3.84832e-05 (min) 0.000744732 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.30349 (min) 10.1589 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.63882 (min) 5.72528 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5604 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1527:               5174 active elements
13:46:27 DEBUG   opendrift.models.basemodel:1538:               59.097247387811684 <- latitude  -> 59.18982531822964
13:46:27 DEBUG   opendrift.models.basemodel:1543:               10.918597626382496 <- longitude -> 11.034225880335745
13:46:27 DEBUG   opendrift.models.basemodel:1548:               -14.656464854147043   <- z ->   0.0
13:46:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:27 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:27 DEBUG   opendrift.models.physics_methods:1049:    min: 0.048064, mean: 2.996911, max: 8.908050
13:46:27 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.048064, mean: 2.996911, max: 8.908050
13:46:27 DEBUG   opendrift.models.basemodel:813: 856 elements hit coastline, moving back to water
13:46:27 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:27 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:27 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:27 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 5174 elements above 0.100m with wind-sheared ocean current (0.005719 m/s - 0.155335 m/s)
13:46:27 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:27 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:27 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09819417882116317
13:46:27 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:27 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:27 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:27 DEBUG   opendrift.models.oceandrift:582: 549 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 436 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 392 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 332 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:27 DEBUG   opendrift.models.oceandrift:582: 320 elements penetrated seafloor, lifting up
13:46:27 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:27 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:27 DEBUG   opendrift.models.basemodel:2945: 5174 active elements (0 deactivated)
13:46:27 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4826, already seeded 5174
13:46:27 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 5208 elements
13:46:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:27 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6252 (max)
13:46:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1527:               5208 active elements
13:46:27 DEBUG   opendrift.models.basemodel:1538:               59.09580017322833 <- latitude  -> 59.18878529307611
13:46:27 DEBUG   opendrift.models.basemodel:1543:               10.918597626382496 <- longitude -> 11.032619952296878
13:46:27 DEBUG   opendrift.models.basemodel:1548:               -15.178462028503418   <- z ->   0.0
13:46:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:836: Lifting 415 elements to seafloor.
13:46:27 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:27 INFO    opendrift.models.basemodel:2882: 2023-09-02 14:33:54.338376 - step 150 of 216 - 5208 active elements (0 deactivated)
13:46:27 DEBUG   opendrift.models.basemodel:2888: 4792 elements scheduled.
13:46:27 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 5208 elements
13:46:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:27 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:27 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 5208 elements
13:46:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:28 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:28 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 15:00:00)
13:46:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:28 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3518 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3518 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3518 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3518 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3518 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3518 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4409 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2083 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4409 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2083 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4409 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2083 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4409 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2083 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4409 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2083 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4409 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2083 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 2
13:46:28 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.43) and
                      after (2023-09-02 15:00:00, weight 0.57) in time
13:46:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0814129480247 and -58.96739060279524 degrees.
13:46:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0814129480247 and -58.96739060279524 degrees.
13:46:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:28 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:28 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:28 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.764767 (min) 1.12466 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.942978 (min) 0.798391 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.97085e-05 (min) 0.000862176 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.10963 (min) 10.0746 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.63409 (min) 6.45926 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6252 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1527:               5208 active elements
13:46:28 DEBUG   opendrift.models.basemodel:1538:               59.09580017322833 <- latitude  -> 59.18878529307611
13:46:28 DEBUG   opendrift.models.basemodel:1543:               10.918597626382496 <- longitude -> 11.032619952296878
13:46:28 DEBUG   opendrift.models.basemodel:1548:               -15.15417766571045   <- z ->   0.0
13:46:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:28 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:28 DEBUG   opendrift.models.physics_methods:1049:    min: 0.022039, mean: 2.963341, max: 9.314016
13:46:28 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.022039, mean: 2.963341, max: 9.314016
13:46:28 DEBUG   opendrift.models.basemodel:813: 819 elements hit coastline, moving back to water
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:46:28 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:28 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:28 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 5208 elements above 0.100m with wind-sheared ocean current (0.000555 m/s - 0.156885 m/s)
13:46:28 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:28 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:28 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10734772151573181
13:46:28 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:28 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:28 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:28 DEBUG   opendrift.models.oceandrift:582: 570 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 333 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 349 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 348 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:28 DEBUG   opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
13:46:28 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:28 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:28 DEBUG   opendrift.models.basemodel:2945: 5208 active elements (0 deactivated)
13:46:28 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4792, already seeded 5208
13:46:28 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 5243 elements
13:46:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:28 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6172 (max)
13:46:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1527:               5243 active elements
13:46:28 DEBUG   opendrift.models.basemodel:1538:               59.096022368750496 <- latitude  -> 59.18867463961661
13:46:28 DEBUG   opendrift.models.basemodel:1543:               10.918689335989374 <- longitude -> 11.03368506520049
13:46:28 DEBUG   opendrift.models.basemodel:1548:               -15.15417766571045   <- z ->   0.0
13:46:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:836: Lifting 438 elements to seafloor.
13:46:28 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:28 INFO    opendrift.models.basemodel:2882: 2023-09-02 14:43:54.338376 - step 151 of 216 - 5243 active elements (0 deactivated)
13:46:28 DEBUG   opendrift.models.basemodel:2888: 4757 elements scheduled.
13:46:28 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 5243 elements
13:46:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:28 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:28 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 5243 elements
13:46:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:29 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:29 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:29 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:29 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:29 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:29 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:29 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 15:00:00)
13:46:29 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:29 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3526 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3526 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3526 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3526 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3526 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3526 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4435 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2100 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4435 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2100 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4435 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2100 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4435 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2100 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4435 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2100 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4435 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2100 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3434 elements, expanding data 1
13:46:29 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
13:46:29 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.27) and
                      after (2023-09-02 15:00:00, weight 0.73) in time
13:46:29 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.081321241321646 and -58.96632547459829 degrees.
13:46:29 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.081321241321646 and -58.96632547459829 degrees.
13:46:29 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:29 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:29 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:29 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:29 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:29 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.721479 (min) 1.18424 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.875382 (min) 0.895239 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.44056e-05 (min) 0.000707275 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.26136 (min) 10.7442 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.23177 (min) 6.29179 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6172 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1527:               5243 active elements
13:46:29 DEBUG   opendrift.models.basemodel:1538:               59.096022368750496 <- latitude  -> 59.18867463961661
13:46:29 DEBUG   opendrift.models.basemodel:1543:               10.918689335989374 <- longitude -> 11.03368506520049
13:46:29 DEBUG   opendrift.models.basemodel:1548:               -15.15417766571045   <- z ->   0.0
13:46:29 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:29 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:29 DEBUG   opendrift.models.physics_methods:1049:    min: 0.016563, mean: 3.010903, max: 9.481731
13:46:29 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.016563, mean: 3.010903, max: 9.481731
13:46:29 DEBUG   opendrift.models.basemodel:813: 841 elements hit coastline, moving back to water
13:46:29 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:29 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:29 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:29 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 5243 elements above 0.100m with wind-sheared ocean current (0.002264 m/s - 0.153284 m/s)
13:46:29 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:29 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:29 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11124833181627272
13:46:29 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:29 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:29 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:29 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 389 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 353 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 347 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:29 DEBUG   opendrift.models.oceandrift:582: 337 elements penetrated seafloor, lifting up
13:46:29 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:29 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:29 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:29 DEBUG   opendrift.models.basemodel:2945: 5243 active elements (0 deactivated)
13:46:29 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4757, already seeded 5243
13:46:29 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:29 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:29 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:29 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1253: Data needed for 5278 elements
13:46:29 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:29 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:29 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:29 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:29 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:29 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:29 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:29 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6187 (max)
13:46:29 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1527:               5278 active elements
13:46:29 DEBUG   opendrift.models.basemodel:1538:               59.09599423017096 <- latitude  -> 59.18867463961662
13:46:29 DEBUG   opendrift.models.basemodel:1543:               10.919752973228997 <- longitude -> 11.034342890113049
13:46:29 DEBUG   opendrift.models.basemodel:1548:               -15.14417766571045   <- z ->   0.0
13:46:29 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:836: Lifting 414 elements to seafloor.
13:46:29 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:29 INFO    opendrift.models.basemodel:2882: 2023-09-02 14:53:54.338376 - step 152 of 216 - 5278 active elements (0 deactivated)
13:46:29 DEBUG   opendrift.models.basemodel:2888: 4722 elements scheduled.
13:46:29 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:29 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:29 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:29 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1253: Data needed for 5278 elements
13:46:29 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:29 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:29 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:29 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:29 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:29 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:29 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:29 DEBUG   opendrift.models.basemodel:1253: Data needed for 5278 elements
13:46:29 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:29 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 14:00:00 (before)
                2023-09-02 15:00:00 (after)
13:46:30 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:30 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:30 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 15:00:00)
13:46:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 14:00:00) in space  (linearNDFast)
13:46:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:30 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3524 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3524 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3524 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3524 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3524 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3524 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4475 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4475 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4475 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4475 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4475 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4475 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2105 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3433 elements, expanding data 1
13:46:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:30 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 14:00:00, weight 0.10) and
                      after (2023-09-02 15:00:00, weight 0.90) in time
13:46:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08025758633291 and -58.965667661884865 degrees.
13:46:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08025758633291 and -58.965667661884865 degrees.
13:46:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:30 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:30 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:30 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.746311 (min) 1.14917 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.849032 (min) 0.841634 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.6893e-05 (min) 0.00082734 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.50995 (min) 10.8357 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.30644 (min) 7.14309 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6187 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1527:               5278 active elements
13:46:30 DEBUG   opendrift.models.basemodel:1538:               59.09599423017096 <- latitude  -> 59.18867463961662
13:46:30 DEBUG   opendrift.models.basemodel:1543:               10.919752973228997 <- longitude -> 11.034342890113049
13:46:30 DEBUG   opendrift.models.basemodel:1548:               -15.14417766571045   <- z ->   0.0
13:46:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:30 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:30 DEBUG   opendrift.models.physics_methods:1049:    min: 0.018632, mean: 3.011981, max: 9.325562
13:46:30 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.018632, mean: 3.011981, max: 9.325562
13:46:30 DEBUG   opendrift.models.basemodel:813: 845 elements hit coastline, moving back to water
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:46:30 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:30 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:30 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 5278 elements above 0.100m with wind-sheared ocean current (0.007583 m/s - 0.143326 m/s)
13:46:30 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:30 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:30 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10761402632863998
13:46:30 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:30 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:30 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:30 DEBUG   opendrift.models.oceandrift:582: 590 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 345 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 350 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:30 DEBUG   opendrift.models.oceandrift:582: 303 elements penetrated seafloor, lifting up
13:46:30 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:30 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:30 DEBUG   opendrift.models.basemodel:2945: 5278 active elements (0 deactivated)
13:46:30 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4722, already seeded 5278
13:46:30 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 5312 elements
13:46:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:30 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6806 (max)
13:46:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1527:               5312 active elements
13:46:30 DEBUG   opendrift.models.basemodel:1538:               59.09475391695675 <- latitude  -> 59.189463590491584
13:46:30 DEBUG   opendrift.models.basemodel:1543:               10.92019469768008 <- longitude -> 11.032929557973501
13:46:30 DEBUG   opendrift.models.basemodel:1548:               -15.268407096862793   <- z ->   0.0
13:46:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:836: Lifting 427 elements to seafloor.
13:46:30 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:30 INFO    opendrift.models.basemodel:2882: 2023-09-02 15:03:54.338376 - step 153 of 216 - 5312 active elements (0 deactivated)
13:46:30 DEBUG   opendrift.models.basemodel:2888: 4688 elements scheduled.
13:46:30 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 5312 elements
13:46:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 5312 elements
13:46:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:31 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:31 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 16:00:00)
13:46:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:31 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3513 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 254 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4492 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4492 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4492 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4492 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4492 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4492 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2106 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3419 elements, expanding data 1
13:46:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 2
13:46:31 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.93) and
                      after (2023-09-02 16:00:00, weight 0.07) in time
13:46:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.079815867516565 and -58.967080996257636 degrees.
13:46:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.079815867516565 and -58.967080996257636 degrees.
13:46:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:31 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:31 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:31 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.851142 (min) 1.40424 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.892439 (min) 0.743086 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.72129e-05 (min) 0.000762253 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.45448 (min) 9.98443 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.96058 (min) 6.3118 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6806 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1527:               5312 active elements
13:46:31 DEBUG   opendrift.models.basemodel:1538:               59.09475391695675 <- latitude  -> 59.189463590491584
13:46:31 DEBUG   opendrift.models.basemodel:1543:               10.92019469768008 <- longitude -> 11.032929557973501
13:46:31 DEBUG   opendrift.models.basemodel:1548:               -15.268407096862793   <- z ->   0.0
13:46:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:31 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:31 DEBUG   opendrift.models.physics_methods:1049:    min: 0.061580, mean: 3.059927, max: 8.837065
13:46:31 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.061580, mean: 3.059927, max: 8.837065
13:46:31 DEBUG   opendrift.models.basemodel:813: 806 elements hit coastline, moving back to water
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:46:31 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:31 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:31 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 5312 elements above 0.100m with wind-sheared ocean current (0.001719 m/s - 0.110609 m/s)
13:46:31 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:31 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:31 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09663550956018448
13:46:31 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:31 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:31 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:31 DEBUG   opendrift.models.oceandrift:582: 576 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 453 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 430 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 370 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:31 DEBUG   opendrift.models.oceandrift:582: 366 elements penetrated seafloor, lifting up
13:46:31 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:31 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:31 DEBUG   opendrift.models.basemodel:2945: 5312 active elements (0 deactivated)
13:46:31 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4688, already seeded 5312
13:46:31 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 5347 elements
13:46:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:31 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.691 (max)
13:46:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1527:               5347 active elements
13:46:31 DEBUG   opendrift.models.basemodel:1538:               59.09464898210382 <- latitude  -> 59.18943280795391
13:46:31 DEBUG   opendrift.models.basemodel:1543:               10.92191805978714 <- longitude -> 11.03343007896767
13:46:31 DEBUG   opendrift.models.basemodel:1548:               -14.489836538514968   <- z ->   0.0
13:46:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:836: Lifting 417 elements to seafloor.
13:46:31 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:31 INFO    opendrift.models.basemodel:2882: 2023-09-02 15:13:54.338376 - step 154 of 216 - 5347 active elements (0 deactivated)
13:46:31 DEBUG   opendrift.models.basemodel:2888: 4653 elements scheduled.
13:46:31 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 5347 elements
13:46:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:31 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:31 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 5347 elements
13:46:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:32 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:32 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:32 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 16:00:00)
13:46:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:32 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3564 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2128 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2128 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2128 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2128 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2128 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3456 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:32 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.77) and
                      after (2023-09-02 16:00:00, weight 0.23) in time
13:46:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.078092515979826 and -58.96658047391427 degrees.
13:46:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.078092515979826 and -58.96658047391427 degrees.
13:46:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:32 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:32 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:32 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.832983 (min) 1.19414 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.918426 (min) 0.758121 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000103023 (min) 0.000763521 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.00057 (min) 10.4523 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.03559 (min) 7.39345 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.691 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1527:               5347 active elements
13:46:32 DEBUG   opendrift.models.basemodel:1538:               59.09464898210382 <- latitude  -> 59.18943280795391
13:46:32 DEBUG   opendrift.models.basemodel:1543:               10.92191805978714 <- longitude -> 11.03343007896767
13:46:32 DEBUG   opendrift.models.basemodel:1548:               -14.489836538514968   <- z ->   0.0
13:46:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:32 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:32 DEBUG   opendrift.models.physics_methods:1049:    min: 0.068188, mean: 3.076294, max: 8.931150
13:46:32 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.068188, mean: 3.076294, max: 8.931150
13:46:32 DEBUG   opendrift.models.basemodel:813: 821 elements hit coastline, moving back to water
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:46:32 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:32 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:32 DEBUG   opendrift.models.physics_methods:835: Advecting 44 of 5347 elements above 0.100m with wind-sheared ocean current (0.012111 m/s - 0.156075 m/s)
13:46:32 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:32 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:32 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09870408363779068
13:46:32 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:32 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:32 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:32 DEBUG   opendrift.models.oceandrift:582: 575 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 401 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 397 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 389 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:32 DEBUG   opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
13:46:32 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:32 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:32 DEBUG   opendrift.models.basemodel:2945: 5347 active elements (0 deactivated)
13:46:32 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4653, already seeded 5347
13:46:32 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 5382 elements
13:46:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:32 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.7675 (max)
13:46:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1527:               5382 active elements
13:46:32 DEBUG   opendrift.models.basemodel:1538:               59.09366305590585 <- latitude  -> 59.18875181532809
13:46:32 DEBUG   opendrift.models.basemodel:1543:               10.9197200127014 <- longitude -> 11.034169877497806
13:46:32 DEBUG   opendrift.models.basemodel:1548:               -14.863597630296121   <- z ->   0.0
13:46:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:836: Lifting 411 elements to seafloor.
13:46:32 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:32 INFO    opendrift.models.basemodel:2882: 2023-09-02 15:23:54.338376 - step 155 of 216 - 5382 active elements (0 deactivated)
13:46:32 DEBUG   opendrift.models.basemodel:2888: 4618 elements scheduled.
13:46:32 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 5382 elements
13:46:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:32 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:32 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 5382 elements
13:46:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:33 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:33 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:33 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:33 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:33 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-09-02 16:00:00)
13:46:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:33 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3563 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3563 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3563 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3563 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3563 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 262 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4540 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4540 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4540 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4540 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4540 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2140 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3467 elements, expanding data 1
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:33 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.60) and
                      after (2023-09-02 16:00:00, weight 0.40) in time
13:46:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08029056486322 and -58.96584068570642 degrees.
13:46:33 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08029056486322 and -58.96584068570642 degrees.
13:46:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:33 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:33 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:33 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.776956 (min) 1.24792 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.968563 (min) 0.779741 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.00011126 (min) 0.000754552 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.16196 (min) 9.33472 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.64418 (min) 7.83016 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.7675 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1527:               5382 active elements
13:46:33 DEBUG   opendrift.models.basemodel:1538:               59.09366305590585 <- latitude  -> 59.18875181532809
13:46:33 DEBUG   opendrift.models.basemodel:1543:               10.9197200127014 <- longitude -> 11.034169877497806
13:46:33 DEBUG   opendrift.models.basemodel:1548:               -14.863597630296121   <- z ->   0.0
13:46:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:33 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:33 DEBUG   opendrift.models.physics_methods:1049:    min: 0.016480, mean: 3.182730, max: 8.796497
13:46:33 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.016480, mean: 3.182730, max: 8.796497
13:46:33 DEBUG   opendrift.models.basemodel:813: 851 elements hit coastline, moving back to water
13:46:33 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:33 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:33 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:33 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 5382 elements above 0.100m with wind-sheared ocean current (0.001258 m/s - 0.137127 m/s)
13:46:33 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:33 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:33 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09575033097084044
13:46:33 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:33 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:33 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:33 DEBUG   opendrift.models.oceandrift:582: 611 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 400 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 379 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 354 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 360 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 32 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
13:46:33 DEBUG   opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
13:46:33 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:33 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:33 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:33 DEBUG   opendrift.models.basemodel:2945: 5382 active elements (0 deactivated)
13:46:33 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4618, already seeded 5382
13:46:33 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 5417 elements
13:46:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:33 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:33 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:33 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:33 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:33 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:33 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.7943 (max)
13:46:33 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1527:               5417 active elements
13:46:33 DEBUG   opendrift.models.basemodel:1538:               59.09328970670914 <- latitude  -> 59.18898890836488
13:46:33 DEBUG   opendrift.models.basemodel:1543:               10.916690895865605 <- longitude -> 11.036908229251361
13:46:33 DEBUG   opendrift.models.basemodel:1548:               -15.183906555175781   <- z ->   0.0
13:46:33 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:836: Lifting 431 elements to seafloor.
13:46:33 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:33 INFO    opendrift.models.basemodel:2882: 2023-09-02 15:33:54.338376 - step 156 of 216 - 5417 active elements (0 deactivated)
13:46:33 DEBUG   opendrift.models.basemodel:2888: 4583 elements scheduled.
13:46:33 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 5417 elements
13:46:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:33 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:33 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:33 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:33 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:33 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:33 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:33 DEBUG   opendrift.models.basemodel:1253: Data needed for 5417 elements
13:46:33 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:33 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:34 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:34 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:34 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x6) for time after (2023-09-02 16:00:00)
13:46:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:34 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3577 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3577 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3577 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3577 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3577 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3577 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 3
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4546 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2164 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4546 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2164 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4546 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2164 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4546 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2164 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4546 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2164 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4546 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2164 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3479 elements, expanding data 1
13:46:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:34 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.43) and
                      after (2023-09-02 16:00:00, weight 0.57) in time
13:46:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08331967738956 and -58.96310233525151 degrees.
13:46:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08331967738956 and -58.96310233525151 degrees.
13:46:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:34 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:34 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:34 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.752392 (min) 1.17941 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00505 (min) 0.831903 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.22068e-05 (min) 0.000693235 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.30473 (min) 10.1334 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.8797 (min) 7.78681 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.7943 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1527:               5417 active elements
13:46:34 DEBUG   opendrift.models.basemodel:1538:               59.09328970670914 <- latitude  -> 59.18898890836488
13:46:34 DEBUG   opendrift.models.basemodel:1543:               10.916690895865605 <- longitude -> 11.036908229251361
13:46:34 DEBUG   opendrift.models.basemodel:1548:               -15.171202659606934   <- z ->   0.0
13:46:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:34 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:34 DEBUG   opendrift.models.physics_methods:1049:    min: 0.038280, mean: 3.289131, max: 8.811220
13:46:34 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.038280, mean: 3.289131, max: 8.811220
13:46:34 DEBUG   opendrift.models.basemodel:813: 854 elements hit coastline, moving back to water
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
13:46:34 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:34 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:34 DEBUG   opendrift.models.physics_methods:835: Advecting 45 of 5417 elements above 0.100m with wind-sheared ocean current (0.001985 m/s - 0.162460 m/s)
13:46:34 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:34 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:34 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09607113791902541
13:46:34 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:34 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:34 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:34 DEBUG   opendrift.models.oceandrift:582: 666 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 37 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 396 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 411 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 383 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:34 DEBUG   opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
13:46:34 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:46:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:46:34 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:34 DEBUG   opendrift.models.basemodel:2945: 5417 active elements (0 deactivated)
13:46:34 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4583, already seeded 5417
13:46:34 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 5451 elements
13:46:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:34 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.8899 (max)
13:46:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1527:               5451 active elements
13:46:34 DEBUG   opendrift.models.basemodel:1538:               59.0922563413895 <- latitude  -> 59.18854164529831
13:46:34 DEBUG   opendrift.models.basemodel:1543:               10.91597535694722 <- longitude -> 11.036797845004951
13:46:34 DEBUG   opendrift.models.basemodel:1548:               -15.2936987513632   <- z ->   0.0
13:46:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:836: Lifting 395 elements to seafloor.
13:46:34 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:34 INFO    opendrift.models.basemodel:2882: 2023-09-02 15:43:54.338376 - step 157 of 216 - 5451 active elements (0 deactivated)
13:46:34 DEBUG   opendrift.models.basemodel:2888: 4549 elements scheduled.
13:46:34 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 5451 elements
13:46:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:34 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:34 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 5451 elements
13:46:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:35 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:35 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x6) for time after (2023-09-02 16:00:00)
13:46:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:35 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3592 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3592 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3592 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3592 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3592 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3592 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4568 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4568 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4568 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4568 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4568 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4568 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2169 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3499 elements, expanding data 1
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
13:46:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:46:35 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.27) and
                      after (2023-09-02 16:00:00, weight 0.73) in time
13:46:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08403521788139 and -58.96321271035343 degrees.
13:46:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08403521788139 and -58.96321271035343 degrees.
13:46:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:35 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:35 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:35 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.736991 (min) 1.06693 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.1348 (min) 0.784333 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -6.36438e-05 (min) 0.000716802 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.63679 (min) 10.467 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.31461 (min) 6.8265 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.8899 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1527:               5451 active elements
13:46:35 DEBUG   opendrift.models.basemodel:1538:               59.0922563413895 <- latitude  -> 59.18854164529831
13:46:35 DEBUG   opendrift.models.basemodel:1543:               10.91597535694722 <- longitude -> 11.036797845004951
13:46:35 DEBUG   opendrift.models.basemodel:1548:               -15.2936987513632   <- z ->   0.0
13:46:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:35 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:35 DEBUG   opendrift.models.physics_methods:1049:    min: 0.063089, mean: 3.396224, max: 9.056020
13:46:35 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.063089, mean: 3.396224, max: 9.056020
13:46:35 DEBUG   opendrift.models.basemodel:813: 846 elements hit coastline, moving back to water
13:46:35 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:35 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:35 DEBUG   opendrift.models.physics_methods:835: Advecting 43 of 5451 elements above 0.100m with wind-sheared ocean current (0.001093 m/s - 0.153624 m/s)
13:46:35 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:35 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:35 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10148331294639587
13:46:35 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:35 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:35 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:35 DEBUG   opendrift.models.oceandrift:582: 614 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 403 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 375 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 376 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:35 DEBUG   opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
13:46:35 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:35 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:35 DEBUG   opendrift.models.basemodel:2945: 5451 active elements (0 deactivated)
13:46:35 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4549, already seeded 5451
13:46:35 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 5486 elements
13:46:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:35 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6905 (max)
13:46:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1527:               5486 active elements
13:46:35 DEBUG   opendrift.models.basemodel:1538:               59.09463309571749 <- latitude  -> 59.18899262499845
13:46:35 DEBUG   opendrift.models.basemodel:1543:               10.914848471982008 <- longitude -> 11.038382852516737
13:46:35 DEBUG   opendrift.models.basemodel:1548:               -15.297584533691406   <- z ->   0.0
13:46:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:836: Lifting 426 elements to seafloor.
13:46:35 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:35 INFO    opendrift.models.basemodel:2882: 2023-09-02 15:53:54.338376 - step 158 of 216 - 5486 active elements (0 deactivated)
13:46:35 DEBUG   opendrift.models.basemodel:2888: 4514 elements scheduled.
13:46:35 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 5486 elements
13:46:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:35 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:35 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 5486 elements
13:46:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:35 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 15:00:00 (before)
                2023-09-02 16:00:00 (after)
13:46:36 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:36 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:36 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:36 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:36 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x6) for time after (2023-09-02 16:00:00)
13:46:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 15:00:00) in space  (linearNDFast)
13:46:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:36 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3633 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 270 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3633 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 270 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3633 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 270 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3633 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 270 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3633 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 270 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3633 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 270 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4616 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2191 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4616 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2191 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4616 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2191 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4616 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2191 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4616 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2191 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4616 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2191 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3548 elements, expanding data 1
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
13:46:36 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:36 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 15:00:00, weight 0.10) and
                      after (2023-09-02 16:00:00, weight 0.90) in time
13:46:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0851620946933 and -58.961627710822896 degrees.
13:46:36 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0851620946933 and -58.961627710822896 degrees.
13:46:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:36 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:36 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:36 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.875885 (min) 1.1274 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.02866 (min) 0.695239 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000110118 (min) 0.000694737 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.65463 (min) 11.7022 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.73661 (min) 7.58449 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.6905 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1527:               5486 active elements
13:46:36 DEBUG   opendrift.models.basemodel:1538:               59.09463309571749 <- latitude  -> 59.18899262499845
13:46:36 DEBUG   opendrift.models.basemodel:1543:               10.914848471982008 <- longitude -> 11.038382852516737
13:46:36 DEBUG   opendrift.models.basemodel:1548:               -15.258752822875977   <- z ->   0.0
13:46:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:36 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:36 DEBUG   opendrift.models.physics_methods:1049:    min: 0.052349, mean: 3.504493, max: 10.101408
13:46:36 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.052349, mean: 3.504493, max: 10.101408
13:46:36 DEBUG   opendrift.models.basemodel:813: 909 elements hit coastline, moving back to water
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 137 elements to seafloor.
13:46:36 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:36 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:36 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 5486 elements above 0.100m with wind-sheared ocean current (0.002900 m/s - 0.154324 m/s)
13:46:36 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:36 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:36 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12626419974620817
13:46:36 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:36 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:36 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:36 DEBUG   opendrift.models.oceandrift:582: 618 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 492 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 400 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 402 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:36 DEBUG   opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
13:46:36 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:36 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:36 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:36 DEBUG   opendrift.models.basemodel:2945: 5486 active elements (0 deactivated)
13:46:36 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4514, already seeded 5486
13:46:36 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 5521 elements
13:46:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:36 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:36 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:36 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:36 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:36 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5602 (max)
13:46:36 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1527:               5521 active elements
13:46:36 DEBUG   opendrift.models.basemodel:1538:               59.09609949527444 <- latitude  -> 59.18865247621707
13:46:36 DEBUG   opendrift.models.basemodel:1543:               10.912181468287871 <- longitude -> 11.03518925964881
13:46:36 DEBUG   opendrift.models.basemodel:1548:               -15.258752822875977   <- z ->   0.0
13:46:36 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:836: Lifting 433 elements to seafloor.
13:46:36 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:36 INFO    opendrift.models.basemodel:2882: 2023-09-02 16:03:54.338376 - step 159 of 216 - 5521 active elements (0 deactivated)
13:46:36 DEBUG   opendrift.models.basemodel:2888: 4479 elements scheduled.
13:46:36 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 5521 elements
13:46:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:36 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:36 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:36 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:36 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:36 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:36 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:36 DEBUG   opendrift.models.basemodel:1253: Data needed for 5521 elements
13:46:36 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:36 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:37 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:37 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:37 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:37 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:37 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 17:00:00)
13:46:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:37 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 3
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4635 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2232 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4635 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2232 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4635 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2232 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4635 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2232 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4635 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2232 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4635 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2232 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
13:46:37 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
13:46:37 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.93) and
                      after (2023-09-02 17:00:00, weight 0.07) in time
13:46:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08782910388679 and -58.96482130180285 degrees.
13:46:37 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.08782910388679 and -58.96482130180285 degrees.
13:46:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:37 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:37 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:37 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.738267 (min) 1.05227 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.917565 (min) 0.758309 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000136874 (min) 0.000726577 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.92856 (min) 10.9635 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.94153 (min) 7.55464 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5602 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1527:               5521 active elements
13:46:37 DEBUG   opendrift.models.basemodel:1538:               59.09609949527444 <- latitude  -> 59.18865247621707
13:46:37 DEBUG   opendrift.models.basemodel:1543:               10.912181468287871 <- longitude -> 11.03518925964881
13:46:37 DEBUG   opendrift.models.basemodel:1548:               -15.258752822875977   <- z ->   0.0
13:46:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:37 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:37 DEBUG   opendrift.models.physics_methods:1049:    min: 0.055613, mean: 3.642372, max: 9.920855
13:46:37 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.055613, mean: 3.642372, max: 9.920855
13:46:37 DEBUG   opendrift.models.basemodel:813: 848 elements hit coastline, moving back to water
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:46:37 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:37 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:37 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 5521 elements above 0.100m with wind-sheared ocean current (0.009403 m/s - 0.156809 m/s)
13:46:37 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:37 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:37 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12179099922855377
13:46:37 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:37 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:37 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:37 DEBUG   opendrift.models.oceandrift:582: 649 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 419 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:37 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:46:37 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:37 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:37 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:37 DEBUG   opendrift.models.basemodel:2945: 5521 active elements (0 deactivated)
13:46:37 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4479, already seeded 5521
13:46:37 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 5556 elements
13:46:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:37 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:37 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:37 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:37 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:37 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5024 (max)
13:46:37 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1527:               5556 active elements
13:46:37 DEBUG   opendrift.models.basemodel:1538:               59.09629686923755 <- latitude  -> 59.19044055147823
13:46:37 DEBUG   opendrift.models.basemodel:1543:               10.909984230963522 <- longitude -> 11.030483452097608
13:46:37 DEBUG   opendrift.models.basemodel:1548:               -15.248752822875977   <- z ->   0.0
13:46:37 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:836: Lifting 425 elements to seafloor.
13:46:37 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:37 INFO    opendrift.models.basemodel:2882: 2023-09-02 16:13:54.338376 - step 160 of 216 - 5556 active elements (0 deactivated)
13:46:37 DEBUG   opendrift.models.basemodel:2888: 4444 elements scheduled.
13:46:37 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 5556 elements
13:46:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:37 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:37 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:37 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:37 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:37 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:37 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:37 DEBUG   opendrift.models.basemodel:1253: Data needed for 5556 elements
13:46:37 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:37 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:38 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:38 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:38 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:38 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:38 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 17:00:00)
13:46:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:38 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4661 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4661 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4661 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4661 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4661 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4661 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3533 elements, expanding data 1
13:46:38 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:38 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.77) and
                      after (2023-09-02 17:00:00, weight 0.23) in time
13:46:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09002634169496 and -58.96952709347013 degrees.
13:46:38 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09002634169496 and -58.96952709347013 degrees.
13:46:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:38 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:38 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:38 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.800418 (min) 1.3498 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.931309 (min) 0.760585 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000195878 (min) 0.000796567 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.54288 (min) 10.2558 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.55273 (min) 7.32919 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5024 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1527:               5556 active elements
13:46:38 DEBUG   opendrift.models.basemodel:1538:               59.09629686923755 <- latitude  -> 59.19044055147823
13:46:38 DEBUG   opendrift.models.basemodel:1543:               10.909984230963522 <- longitude -> 11.030483452097608
13:46:38 DEBUG   opendrift.models.basemodel:1548:               -15.248752822875977   <- z ->   0.0
13:46:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:38 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:38 DEBUG   opendrift.models.physics_methods:1049:    min: 0.028543, mean: 3.665487, max: 8.997234
13:46:38 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.028543, mean: 3.665487, max: 8.997234
13:46:38 DEBUG   opendrift.models.basemodel:813: 867 elements hit coastline, moving back to water
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:38 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:38 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:38 DEBUG   opendrift.models.physics_methods:835: Advecting 51 of 5556 elements above 0.100m with wind-sheared ocean current (0.002220 m/s - 0.161713 m/s)
13:46:38 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:38 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:38 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10017010633094788
13:46:38 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:38 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:38 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:38 DEBUG   opendrift.models.oceandrift:582: 681 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 464 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 39 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 411 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:38 DEBUG   opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
13:46:38 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:38 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:38 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:38 DEBUG   opendrift.models.basemodel:2945: 5556 active elements (0 deactivated)
13:46:38 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4444, already seeded 5556
13:46:38 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 5590 elements
13:46:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:38 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:38 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:38 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:38 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:38 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5941 (max)
13:46:38 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1527:               5590 active elements
13:46:38 DEBUG   opendrift.models.basemodel:1538:               59.09493850738479 <- latitude  -> 59.1894201309067
13:46:38 DEBUG   opendrift.models.basemodel:1543:               10.907980808394187 <- longitude -> 11.029847976891176
13:46:38 DEBUG   opendrift.models.basemodel:1548:               -14.808466186523438   <- z ->   0.0
13:46:38 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:836: Lifting 377 elements to seafloor.
13:46:38 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:38 INFO    opendrift.models.basemodel:2882: 2023-09-02 16:23:54.338376 - step 161 of 216 - 5590 active elements (0 deactivated)
13:46:38 DEBUG   opendrift.models.basemodel:2888: 4410 elements scheduled.
13:46:38 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 5590 elements
13:46:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:38 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:38 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:38 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:38 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:38 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:38 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:38 DEBUG   opendrift.models.basemodel:1253: Data needed for 5590 elements
13:46:38 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:38 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:39 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:39 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:39 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:39 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:39 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 17:00:00)
13:46:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:39 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3641 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4669 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3543 elements, expanding data 1
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
13:46:39 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:39 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.60) and
                      after (2023-09-02 17:00:00, weight 0.40) in time
13:46:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09202975348323 and -58.97016258165241 degrees.
13:46:39 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09202975348323 and -58.97016258165241 degrees.
13:46:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:39 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:39 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:39 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.87216 (min) 0.99601 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.985488 (min) 0.787425 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000128106 (min) 0.000664247 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.1312 (min) 12.3967 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.42981 (min) 7.47631 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5941 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1527:               5590 active elements
13:46:39 DEBUG   opendrift.models.basemodel:1538:               59.09493850738479 <- latitude  -> 59.1894201309067
13:46:39 DEBUG   opendrift.models.basemodel:1543:               10.907980808394187 <- longitude -> 11.029847976891176
13:46:39 DEBUG   opendrift.models.basemodel:1548:               -14.615090370178223   <- z ->   0.0
13:46:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:39 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:39 DEBUG   opendrift.models.physics_methods:1049:    min: 0.066231, mean: 3.719044, max: 10.659179
13:46:39 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.066231, mean: 3.719044, max: 10.659179
13:46:39 DEBUG   opendrift.models.basemodel:813: 876 elements hit coastline, moving back to water
13:46:39 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:39 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:39 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:39 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 5590 elements above 0.100m with wind-sheared ocean current (0.003471 m/s - 0.164407 m/s)
13:46:39 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:39 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:39 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.14059260277708052
13:46:39 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:39 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:39 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:39 DEBUG   opendrift.models.oceandrift:582: 645 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 436 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 406 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:39 DEBUG   opendrift.models.oceandrift:582: 391 elements penetrated seafloor, lifting up
13:46:39 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:39 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:39 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:39 DEBUG   opendrift.models.basemodel:2945: 5590 active elements (0 deactivated)
13:46:39 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4410, already seeded 5590
13:46:39 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 5625 elements
13:46:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:39 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:39 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:39 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:39 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:39 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5062 (max)
13:46:39 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1527:               5625 active elements
13:46:39 DEBUG   opendrift.models.basemodel:1538:               59.092760787650946 <- latitude  -> 59.19025362443564
13:46:39 DEBUG   opendrift.models.basemodel:1543:               10.907898645171617 <- longitude -> 11.0300618178144
13:46:39 DEBUG   opendrift.models.basemodel:1548:               -15.074059553103757   <- z ->   0.0
13:46:39 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:836: Lifting 416 elements to seafloor.
13:46:39 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:39 INFO    opendrift.models.basemodel:2882: 2023-09-02 16:33:54.338376 - step 162 of 216 - 5625 active elements (0 deactivated)
13:46:39 DEBUG   opendrift.models.basemodel:2888: 4375 elements scheduled.
13:46:39 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 5625 elements
13:46:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:39 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:39 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:39 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:39 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:39 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:39 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:39 DEBUG   opendrift.models.basemodel:1253: Data needed for 5625 elements
13:46:39 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:39 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:40 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:40 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:40 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:40 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 17:00:00)
13:46:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:40 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3673 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3673 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3673 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3673 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3673 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3673 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 3
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4711 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2270 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4711 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2270 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4711 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2270 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4711 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2270 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4711 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2270 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4711 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2270 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3566 elements, expanding data 1
13:46:40 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:40 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.43) and
                      after (2023-09-02 17:00:00, weight 0.57) in time
13:46:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09211193305973 and -58.969948744275804 degrees.
13:46:40 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09211193305973 and -58.969948744275804 degrees.
13:46:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:40 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:40 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:40 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.824104 (min) 1.28785 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01811 (min) 0.804751 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000161652 (min) 0.00086641 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.16689 (min) 11.3276 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.30103 (min) 8.18084 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5062 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1527:               5625 active elements
13:46:40 DEBUG   opendrift.models.basemodel:1538:               59.092760787650946 <- latitude  -> 59.19025362443564
13:46:40 DEBUG   opendrift.models.basemodel:1543:               10.907898645171617 <- longitude -> 11.0300618178144
13:46:40 DEBUG   opendrift.models.basemodel:1548:               -15.074059553103757   <- z ->   0.0
13:46:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:40 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:40 DEBUG   opendrift.models.physics_methods:1049:    min: 0.084137, mean: 3.797417, max: 9.731327
13:46:40 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.084137, mean: 3.797417, max: 9.731327
13:46:40 DEBUG   opendrift.models.basemodel:813: 846 elements hit coastline, moving back to water
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:46:40 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:40 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:40 DEBUG   opendrift.models.physics_methods:835: Advecting 44 of 5625 elements above 0.100m with wind-sheared ocean current (0.006226 m/s - 0.126612 m/s)
13:46:40 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:40 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:40 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11718218779380797
13:46:40 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:40 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:40 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:40 DEBUG   opendrift.models.oceandrift:582: 680 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 538 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 514 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 491 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:40 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:46:40 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:40 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:40 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:40 DEBUG   opendrift.models.basemodel:2945: 5625 active elements (0 deactivated)
13:46:40 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4375, already seeded 5625
13:46:40 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 5660 elements
13:46:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:40 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:40 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:40 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:40 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:40 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4912 (max)
13:46:40 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1527:               5660 active elements
13:46:40 DEBUG   opendrift.models.basemodel:1538:               59.09171362056865 <- latitude  -> 59.18860827425196
13:46:40 DEBUG   opendrift.models.basemodel:1543:               10.909351267511958 <- longitude -> 11.031994070233086
13:46:40 DEBUG   opendrift.models.basemodel:1548:               -15.33918212890625   <- z ->   0.0
13:46:40 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:836: Lifting 412 elements to seafloor.
13:46:40 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:40 INFO    opendrift.models.basemodel:2882: 2023-09-02 16:43:54.338376 - step 163 of 216 - 5660 active elements (0 deactivated)
13:46:40 DEBUG   opendrift.models.basemodel:2888: 4340 elements scheduled.
13:46:40 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 5660 elements
13:46:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:40 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:40 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:40 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:40 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:40 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:40 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:40 DEBUG   opendrift.models.basemodel:1253: Data needed for 5660 elements
13:46:40 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:40 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:41 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:41 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:41 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:41 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:41 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 17:00:00)
13:46:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:41 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 276 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 276 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 276 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 276 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 276 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 276 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4718 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2260 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4718 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2260 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4718 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2260 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4718 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2260 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4718 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2260 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4718 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2260 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3584 elements, expanding data 1
13:46:41 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 2
13:46:41 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.27) and
                      after (2023-09-02 17:00:00, weight 0.73) in time
13:46:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09065930770219 and -58.968016489802544 degrees.
13:46:41 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09065930770219 and -58.968016489802544 degrees.
13:46:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:41 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:41 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:41 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.686828 (min) 1.18102 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00659 (min) 0.718629 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000148106 (min) 0.000669368 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.39449 (min) 10.7824 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.98657 (min) 8.81967 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4912 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1527:               5660 active elements
13:46:41 DEBUG   opendrift.models.basemodel:1538:               59.09171362056865 <- latitude  -> 59.18860827425196
13:46:41 DEBUG   opendrift.models.basemodel:1543:               10.909351267511958 <- longitude -> 11.031994070233086
13:46:41 DEBUG   opendrift.models.basemodel:1548:               -15.33918212890625   <- z ->   0.0
13:46:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:41 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:41 DEBUG   opendrift.models.physics_methods:1049:    min: 0.076462, mean: 3.855360, max: 9.882086
13:46:41 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.076462, mean: 3.855360, max: 9.882086
13:46:41 DEBUG   opendrift.models.basemodel:813: 910 elements hit coastline, moving back to water
13:46:41 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:41 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:41 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:41 DEBUG   opendrift.models.physics_methods:835: Advecting 44 of 5660 elements above 0.100m with wind-sheared ocean current (0.000042 m/s - 0.153262 m/s)
13:46:41 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:41 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:41 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12084099893863677
13:46:41 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:41 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:41 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:41 DEBUG   opendrift.models.oceandrift:582: 645 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 489 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 466 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 38 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 452 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 419 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:41 DEBUG   opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
13:46:41 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:41 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:41 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:41 DEBUG   opendrift.models.basemodel:2945: 5660 active elements (0 deactivated)
13:46:41 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4340, already seeded 5660
13:46:41 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 5694 elements
13:46:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:41 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:41 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:41 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:41 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:41 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4803 (max)
13:46:41 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1527:               5694 active elements
13:46:41 DEBUG   opendrift.models.basemodel:1538:               59.09190621834234 <- latitude  -> 59.18860827425196
13:46:41 DEBUG   opendrift.models.basemodel:1543:               10.909077912501893 <- longitude -> 11.02857659967689
13:46:41 DEBUG   opendrift.models.basemodel:1548:               -15.279007186889649   <- z ->   0.0
13:46:41 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:836: Lifting 383 elements to seafloor.
13:46:41 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:41 INFO    opendrift.models.basemodel:2882: 2023-09-02 16:53:54.338376 - step 164 of 216 - 5694 active elements (0 deactivated)
13:46:41 DEBUG   opendrift.models.basemodel:2888: 4306 elements scheduled.
13:46:41 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 5694 elements
13:46:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:41 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:41 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:41 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:41 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:41 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:41 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:41 DEBUG   opendrift.models.basemodel:1253: Data needed for 5694 elements
13:46:41 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:41 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 16:00:00 (before)
                2023-09-02 17:00:00 (after)
13:46:42 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:42 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:42 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:42 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 17:00:00)
13:46:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 16:00:00) in space  (linearNDFast)
13:46:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:42 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3676 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3676 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3676 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3676 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3676 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3676 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4745 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2253 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4745 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2253 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4745 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2253 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4745 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2253 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4745 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2253 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4745 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2253 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3578 elements, expanding data 1
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
13:46:42 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:42 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 16:00:00, weight 0.10) and
                      after (2023-09-02 17:00:00, weight 0.90) in time
13:46:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09093265424342 and -58.971433953083526 degrees.
13:46:42 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09093265424342 and -58.971433953083526 degrees.
13:46:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:42 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:42 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:42 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.783271 (min) 1.14008 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.06692 (min) 0.828675 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000102163 (min) 0.000773427 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.68902 (min) 10.3587 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.4866 (min) 9.49148 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4803 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1527:               5694 active elements
13:46:42 DEBUG   opendrift.models.basemodel:1538:               59.09190621834234 <- latitude  -> 59.18860827425196
13:46:42 DEBUG   opendrift.models.basemodel:1543:               10.909077912501893 <- longitude -> 11.02857659967689
13:46:42 DEBUG   opendrift.models.basemodel:1548:               -15.19229507446289   <- z ->   0.0
13:46:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:42 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:42 DEBUG   opendrift.models.physics_methods:1049:    min: 0.070529, mean: 3.883630, max: 9.042837
13:46:42 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.070529, mean: 3.883630, max: 9.042837
13:46:42 DEBUG   opendrift.models.basemodel:813: 866 elements hit coastline, moving back to water
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 129 elements to seafloor.
13:46:42 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:42 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:42 DEBUG   opendrift.models.physics_methods:835: Advecting 45 of 5694 elements above 0.100m with wind-sheared ocean current (0.005453 m/s - 0.203859 m/s)
13:46:42 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:42 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:42 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1011880444947052
13:46:42 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:42 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:42 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:42 DEBUG   opendrift.models.oceandrift:582: 679 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 465 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:42 DEBUG   opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
13:46:42 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:42 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:42 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:42 DEBUG   opendrift.models.basemodel:2945: 5694 active elements (0 deactivated)
13:46:42 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4306, already seeded 5694
13:46:42 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 5729 elements
13:46:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:42 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:42 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:42 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:42 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:42 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4457 (max)
13:46:42 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1527:               5729 active elements
13:46:42 DEBUG   opendrift.models.basemodel:1538:               59.09148042016893 <- latitude  -> 59.18920147464851
13:46:42 DEBUG   opendrift.models.basemodel:1543:               10.90852936059058 <- longitude -> 11.026929702547648
13:46:42 DEBUG   opendrift.models.basemodel:1548:               -14.572869529724121   <- z ->   0.0
13:46:42 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:836: Lifting 405 elements to seafloor.
13:46:42 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:42 INFO    opendrift.models.basemodel:2882: 2023-09-02 17:03:54.338376 - step 165 of 216 - 5729 active elements (0 deactivated)
13:46:42 DEBUG   opendrift.models.basemodel:2888: 4271 elements scheduled.
13:46:42 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 5729 elements
13:46:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:42 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:42 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:42 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:42 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:42 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:42 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:42 DEBUG   opendrift.models.basemodel:1253: Data needed for 5729 elements
13:46:42 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:42 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:43 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:43 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:43 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:43 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 18:00:00)
13:46:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:43 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3711 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3711 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3711 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3711 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3711 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 278 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4752 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4752 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4752 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4752 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4752 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2279 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3603 elements, expanding data 1
13:46:43 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 2
13:46:43 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.93) and
                      after (2023-09-02 18:00:00, weight 0.07) in time
13:46:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09148121395551 and -58.97308085482533 degrees.
13:46:43 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09148121395551 and -58.97308085482533 degrees.
13:46:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:43 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:43 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:43 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.877437 (min) 0.953537 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01965 (min) 0.761205 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000111135 (min) 0.000650286 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.41342 (min) 13.5968 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.44618 (min) 8.53808 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4457 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1527:               5729 active elements
13:46:43 DEBUG   opendrift.models.basemodel:1538:               59.09148042016893 <- latitude  -> 59.18920147464851
13:46:43 DEBUG   opendrift.models.basemodel:1543:               10.90852936059058 <- longitude -> 11.026929702547648
13:46:43 DEBUG   opendrift.models.basemodel:1548:               -14.572869529724121   <- z ->   0.0
13:46:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:43 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:43 DEBUG   opendrift.models.physics_methods:1049:    min: 0.046566, mean: 3.964013, max: 11.835458
13:46:43 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.046566, mean: 3.964013, max: 11.835458
13:46:43 DEBUG   opendrift.models.basemodel:813: 907 elements hit coastline, moving back to water
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
13:46:43 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:43 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:43 DEBUG   opendrift.models.physics_methods:835: Advecting 47 of 5729 elements above 0.100m with wind-sheared ocean current (0.000189 m/s - 0.175991 m/s)
13:46:43 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:43 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:43 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.17333361735923764
13:46:43 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:43 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:43 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:43 DEBUG   opendrift.models.oceandrift:582: 656 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 557 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 544 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 478 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 485 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 492 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:43 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:46:43 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:43 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:43 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:43 DEBUG   opendrift.models.basemodel:2945: 5729 active elements (0 deactivated)
13:46:43 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4271, already seeded 5729
13:46:43 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 5764 elements
13:46:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:43 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:43 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:43 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:43 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:43 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4545 (max)
13:46:43 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1527:               5764 active elements
13:46:43 DEBUG   opendrift.models.basemodel:1538:               59.091996715518036 <- latitude  -> 59.18962599287586
13:46:43 DEBUG   opendrift.models.basemodel:1543:               10.904648797578218 <- longitude -> 11.027462956362973
13:46:43 DEBUG   opendrift.models.basemodel:1548:               -14.785405667309806   <- z ->   0.0
13:46:43 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:836: Lifting 406 elements to seafloor.
13:46:43 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:43 INFO    opendrift.models.basemodel:2882: 2023-09-02 17:13:54.338376 - step 166 of 216 - 5764 active elements (0 deactivated)
13:46:43 DEBUG   opendrift.models.basemodel:2888: 4236 elements scheduled.
13:46:43 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 5764 elements
13:46:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:43 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:43 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:43 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:43 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:43 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:43 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:43 DEBUG   opendrift.models.basemodel:1253: Data needed for 5764 elements
13:46:43 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:43 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:44 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:44 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:44 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:44 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:44 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 18:00:00)
13:46:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:44 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3754 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 277 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4783 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4783 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4783 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4783 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4783 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3634 elements, expanding data 1
13:46:44 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
13:46:44 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.77) and
                      after (2023-09-02 18:00:00, weight 0.23) in time
13:46:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09536177606444 and -58.97254757463748 degrees.
13:46:44 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09536177606444 and -58.97254757463748 degrees.
13:46:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:44 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:44 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:44 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.801846 (min) 1.25401 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.965414 (min) 0.820948 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000128702 (min) 0.000787638 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.09985 (min) 10.6645 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.76514 (min) 8.14552 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4545 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1527:               5764 active elements
13:46:44 DEBUG   opendrift.models.basemodel:1538:               59.091996715518036 <- latitude  -> 59.18962599287586
13:46:44 DEBUG   opendrift.models.basemodel:1543:               10.904648797578218 <- longitude -> 11.027462956362973
13:46:44 DEBUG   opendrift.models.basemodel:1548:               -14.785405667309806   <- z ->   0.0
13:46:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:44 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:44 DEBUG   opendrift.models.physics_methods:1049:    min: 0.023722, mean: 4.089556, max: 9.296095
13:46:44 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.023722, mean: 4.089556, max: 9.296095
13:46:44 DEBUG   opendrift.models.basemodel:813: 923 elements hit coastline, moving back to water
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:46:44 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:44 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:44 DEBUG   opendrift.models.physics_methods:835: Advecting 45 of 5764 elements above 0.100m with wind-sheared ocean current (0.007035 m/s - 0.198264 m/s)
13:46:44 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:44 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:44 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10693502718074797
13:46:44 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:44 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:44 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:44 DEBUG   opendrift.models.oceandrift:582: 695 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 535 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 483 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 467 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:44 DEBUG   opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
13:46:44 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:44 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:44 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:44 DEBUG   opendrift.models.basemodel:2945: 5764 active elements (0 deactivated)
13:46:44 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4236, already seeded 5764
13:46:44 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 5799 elements
13:46:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:44 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:44 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:44 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:44 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:44 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4817 (max)
13:46:44 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1527:               5799 active elements
13:46:44 DEBUG   opendrift.models.basemodel:1538:               59.09308721433855 <- latitude  -> 59.19015006102704
13:46:44 DEBUG   opendrift.models.basemodel:1543:               10.907593495977977 <- longitude -> 11.029699482324318
13:46:44 DEBUG   opendrift.models.basemodel:1548:               -14.562582244873047   <- z ->   0.0
13:46:44 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
13:46:44 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:44 INFO    opendrift.models.basemodel:2882: 2023-09-02 17:23:54.338376 - step 167 of 216 - 5799 active elements (0 deactivated)
13:46:44 DEBUG   opendrift.models.basemodel:2888: 4201 elements scheduled.
13:46:44 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 5799 elements
13:46:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:44 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:44 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:44 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:44 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:44 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:44 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:44 DEBUG   opendrift.models.basemodel:1253: Data needed for 5799 elements
13:46:44 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:44 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:45 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:45 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:45 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:45 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:45 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-09-02 18:00:00)
13:46:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:45 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3768 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3768 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3768 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3768 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3768 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4813 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2298 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4813 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2298 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4813 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2298 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4813 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2298 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4813 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2298 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3642 elements, expanding data 1
13:46:45 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 2
13:46:45 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.60) and
                      after (2023-09-02 18:00:00, weight 0.40) in time
13:46:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0924170754556 and -58.970311074733814 degrees.
13:46:45 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.0924170754556 and -58.970311074733814 degrees.
13:46:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:45 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:45 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:45 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.834598 (min) 0.968367 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.91856 (min) 0.811531 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000131672 (min) 0.00082438 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.48399 (min) 11.8448 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.56939 (min) 7.78985 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4817 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1527:               5799 active elements
13:46:45 DEBUG   opendrift.models.basemodel:1538:               59.09308721433855 <- latitude  -> 59.19015006102704
13:46:45 DEBUG   opendrift.models.basemodel:1543:               10.907593495977977 <- longitude -> 11.029699482324318
13:46:45 DEBUG   opendrift.models.basemodel:1548:               -14.562582244873047   <- z ->   0.0
13:46:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:45 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:45 DEBUG   opendrift.models.physics_methods:1049:    min: 0.156830, mean: 4.260850, max: 10.130678
13:46:45 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.156830, mean: 4.260850, max: 10.130678
13:46:45 DEBUG   opendrift.models.basemodel:813: 930 elements hit coastline, moving back to water
13:46:45 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:45 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:45 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:45 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 5799 elements above 0.100m with wind-sheared ocean current (0.011046 m/s - 0.184472 m/s)
13:46:45 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:45 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:45 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12699697715909955
13:46:45 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:45 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:45 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:45 DEBUG   opendrift.models.oceandrift:582: 734 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 586 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 584 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 542 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 554 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 471 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:45 DEBUG   opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
13:46:45 DEBUG   opendrift.models.oceandrift:600: 42 elements reached seafloor, set to bottom
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
13:46:45 DEBUG   opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
13:46:45 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:45 DEBUG   opendrift.models.basemodel:2945: 5799 active elements (0 deactivated)
13:46:45 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4201, already seeded 5799
13:46:45 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 5833 elements
13:46:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:45 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:45 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:45 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:45 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:45 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5127 (max)
13:46:45 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1527:               5833 active elements
13:46:45 DEBUG   opendrift.models.basemodel:1538:               59.09304251562294 <- latitude  -> 59.18942073942954
13:46:45 DEBUG   opendrift.models.basemodel:1543:               10.90703418103983 <- longitude -> 11.028993468993963
13:46:45 DEBUG   opendrift.models.basemodel:1548:               -15.240522384643555   <- z ->   0.0
13:46:45 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:836: Lifting 386 elements to seafloor.
13:46:45 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:45 INFO    opendrift.models.basemodel:2882: 2023-09-02 17:33:54.338376 - step 168 of 216 - 5833 active elements (0 deactivated)
13:46:45 DEBUG   opendrift.models.basemodel:2888: 4167 elements scheduled.
13:46:45 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 5833 elements
13:46:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:45 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:45 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:45 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:45 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:45 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:45 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:45 DEBUG   opendrift.models.basemodel:1253: Data needed for 5833 elements
13:46:45 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:45 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:46 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:46 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:46 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:46 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 18:00:00)
13:46:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:46 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3745 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3745 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3745 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3745 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3745 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3745 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 269 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4838 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2284 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4838 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2284 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4838 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2284 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4838 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2284 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4838 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2284 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4838 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2284 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3627 elements, expanding data 1
13:46:46 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:46 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.43) and
                      after (2023-09-02 18:00:00, weight 0.57) in time
13:46:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09297639013477 and -58.97101709433152 degrees.
13:46:46 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09297639013477 and -58.97101709433152 degrees.
13:46:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:46 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:46 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:46 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.738343 (min) 1.10679 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.99328 (min) 0.716072 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000102812 (min) 0.00073884 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.35137 (min) 11.4616 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.68129 (min) 8.07667 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5127 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1527:               5833 active elements
13:46:46 DEBUG   opendrift.models.basemodel:1538:               59.09304251562294 <- latitude  -> 59.18942073942954
13:46:46 DEBUG   opendrift.models.basemodel:1543:               10.90703418103983 <- longitude -> 11.028993468993963
13:46:46 DEBUG   opendrift.models.basemodel:1548:               -15.2302827835083   <- z ->   0.0
13:46:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:46 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:46 DEBUG   opendrift.models.physics_methods:1049:    min: 0.173101, mean: 4.350530, max: 9.807222
13:46:46 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.173101, mean: 4.350530, max: 9.807222
13:46:46 DEBUG   opendrift.models.basemodel:813: 881 elements hit coastline, moving back to water
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:46:46 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:46 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:46 DEBUG   opendrift.models.physics_methods:835: Advecting 45 of 5833 elements above 0.100m with wind-sheared ocean current (0.009243 m/s - 0.163756 m/s)
13:46:46 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:46 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:46 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11901707535942077
13:46:46 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:46 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:46 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:46 DEBUG   opendrift.models.oceandrift:582: 718 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 604 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 556 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 513 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 522 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:46 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:46:46 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:46 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:46 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:46 DEBUG   opendrift.models.basemodel:2945: 5833 active elements (0 deactivated)
13:46:46 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4167, already seeded 5833
13:46:46 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 5868 elements
13:46:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:46 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:46 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:46 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:46 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:46 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5859 (max)
13:46:46 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1527:               5868 active elements
13:46:46 DEBUG   opendrift.models.basemodel:1538:               59.0949839023101 <- latitude  -> 59.18969695732414
13:46:46 DEBUG   opendrift.models.basemodel:1543:               10.9084614622543 <- longitude -> 11.029874523422448
13:46:46 DEBUG   opendrift.models.basemodel:1548:               -15.220282783508301   <- z ->   0.0
13:46:46 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:836: Lifting 357 elements to seafloor.
13:46:46 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:46 INFO    opendrift.models.basemodel:2882: 2023-09-02 17:43:54.338376 - step 169 of 216 - 5868 active elements (0 deactivated)
13:46:46 DEBUG   opendrift.models.basemodel:2888: 4132 elements scheduled.
13:46:46 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 5868 elements
13:46:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:46 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:46 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:46 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:46 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:46 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:46 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:46 DEBUG   opendrift.models.basemodel:1253: Data needed for 5868 elements
13:46:46 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:46 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:47 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:47 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:47 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:47 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:47 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 18:00:00)
13:46:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:47 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3791 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3791 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3791 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3791 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3791 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3791 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 274 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4869 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2292 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4869 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2292 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4869 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2292 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4869 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2292 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4869 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2292 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4869 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2292 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3682 elements, expanding data 1
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
13:46:47 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:47 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.27) and
                      after (2023-09-02 18:00:00, weight 0.73) in time
13:46:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.091549107507554 and -58.97013604364119 degrees.
13:46:47 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.091549107507554 and -58.97013604364119 degrees.
13:46:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:47 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:47 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:47 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.777628 (min) 1.06696 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.940515 (min) 0.725118 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000104586 (min) 0.000751638 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.37746 (min) 11.8689 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.66883 (min) 9.19272 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5859 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1527:               5868 active elements
13:46:47 DEBUG   opendrift.models.basemodel:1538:               59.0949839023101 <- latitude  -> 59.18969695732414
13:46:47 DEBUG   opendrift.models.basemodel:1543:               10.9084614622543 <- longitude -> 11.029874523422448
13:46:47 DEBUG   opendrift.models.basemodel:1548:               -15.220282783508301   <- z ->   0.0
13:46:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:47 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:47 DEBUG   opendrift.models.physics_methods:1049:    min: 0.071579, mean: 4.503771, max: 10.629065
13:46:47 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.071579, mean: 4.503771, max: 10.629065
13:46:47 DEBUG   opendrift.models.basemodel:813: 885 elements hit coastline, moving back to water
13:46:47 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:47 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:47 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:47 DEBUG   opendrift.models.physics_methods:835: Advecting 54 of 5868 elements above 0.100m with wind-sheared ocean current (0.000338 m/s - 0.205561 m/s)
13:46:47 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:47 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:47 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13979938219602583
13:46:47 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:47 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:47 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:47 DEBUG   opendrift.models.oceandrift:582: 681 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 590 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 577 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 562 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 562 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:47 DEBUG   opendrift.models.oceandrift:582: 507 elements penetrated seafloor, lifting up
13:46:47 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:47 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:47 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:47 DEBUG   opendrift.models.basemodel:2945: 5868 active elements (0 deactivated)
13:46:47 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4132, already seeded 5868
13:46:47 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 5903 elements
13:46:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:47 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:47 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:47 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:47 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:47 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4695 (max)
13:46:47 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1527:               5903 active elements
13:46:47 DEBUG   opendrift.models.basemodel:1538:               59.09482525390389 <- latitude  -> 59.18867263267032
13:46:47 DEBUG   opendrift.models.basemodel:1543:               10.908612282177689 <- longitude -> 11.032769265925923
13:46:47 DEBUG   opendrift.models.basemodel:1548:               -14.815451850891113   <- z ->   0.0
13:46:47 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:836: Lifting 371 elements to seafloor.
13:46:47 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:47 INFO    opendrift.models.basemodel:2882: 2023-09-02 17:53:54.338376 - step 170 of 216 - 5903 active elements (0 deactivated)
13:46:47 DEBUG   opendrift.models.basemodel:2888: 4097 elements scheduled.
13:46:47 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 5903 elements
13:46:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:47 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:47 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:47 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:47 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:47 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:47 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:47 DEBUG   opendrift.models.basemodel:1253: Data needed for 5903 elements
13:46:47 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:47 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 17:00:00 (before)
                2023-09-02 18:00:00 (after)
13:46:48 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:48 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:48 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:48 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:48 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x5) for time after (2023-09-02 18:00:00)
13:46:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 17:00:00) in space  (linearNDFast)
13:46:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:48 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3819 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3819 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3819 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3819 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3819 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 3
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4885 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2343 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4885 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2343 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4885 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2343 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4885 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2343 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4885 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2343 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
13:46:48 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 17:00:00, weight 0.10) and
                      after (2023-09-02 18:00:00, weight 0.90) in time
13:46:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09139828305215 and -58.96724129680036 degrees.
13:46:48 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09139828305215 and -58.96724129680036 degrees.
13:46:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:48 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:48 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:48 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.723324 (min) 1.19678 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.97201 (min) 0.708344 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.98045e-05 (min) 0.000717129 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.33122 (min) 12.4383 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.20056 (min) 7.59436 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4695 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1527:               5903 active elements
13:46:48 DEBUG   opendrift.models.basemodel:1538:               59.09482525390389 <- latitude  -> 59.18867263267032
13:46:48 DEBUG   opendrift.models.basemodel:1543:               10.908612282177689 <- longitude -> 11.032769265925923
13:46:48 DEBUG   opendrift.models.basemodel:1548:               -14.684535026550293   <- z ->   0.0
13:46:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:48 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:48 DEBUG   opendrift.models.physics_methods:1049:    min: 0.199644, mean: 4.660043, max: 11.096556
13:46:48 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.199644, mean: 4.660043, max: 11.096556
13:46:48 DEBUG   opendrift.models.basemodel:813: 888 elements hit coastline, moving back to water
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
13:46:48 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:48 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:48 DEBUG   opendrift.models.physics_methods:835: Advecting 48 of 5903 elements above 0.100m with wind-sheared ocean current (0.009336 m/s - 0.201376 m/s)
13:46:48 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:48 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:48 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.15236682070644375
13:46:48 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:48 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:48 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:48 DEBUG   opendrift.models.oceandrift:582: 757 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 644 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 603 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 588 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 588 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 582 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 565 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 511 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:48 DEBUG   opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
13:46:48 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:48 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:48 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:48 DEBUG   opendrift.models.basemodel:2945: 5903 active elements (0 deactivated)
13:46:48 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4097, already seeded 5903
13:46:48 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 5937 elements
13:46:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:48 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
13:46:48 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:48 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:48 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:48 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.488 (max)
13:46:48 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1527:               5937 active elements
13:46:48 DEBUG   opendrift.models.basemodel:1538:               59.09414131582224 <- latitude  -> 59.18939795553621
13:46:48 DEBUG   opendrift.models.basemodel:1543:               10.907328326050202 <- longitude -> 11.03610039932329
13:46:48 DEBUG   opendrift.models.basemodel:1548:               -15.301395748048055   <- z ->   0.0
13:46:48 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
13:46:48 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:48 INFO    opendrift.models.basemodel:2882: 2023-09-02 18:03:54.338376 - step 171 of 216 - 5937 active elements (0 deactivated)
13:46:48 DEBUG   opendrift.models.basemodel:2888: 4063 elements scheduled.
13:46:48 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 5937 elements
13:46:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:48 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:48 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:48 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:48 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:48 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:48 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:48 DEBUG   opendrift.models.basemodel:1253: Data needed for 5937 elements
13:46:48 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:48 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:49 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:49 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:49 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:49 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:49 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 19:00:00)
13:46:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:49 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3822 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3822 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3822 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3822 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3822 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3822 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 57 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4943 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4943 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4943 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4943 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4943 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4943 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2344 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3697 elements, expanding data 1
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:49 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:49 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.93) and
                      after (2023-09-02 19:00:00, weight 0.07) in time
13:46:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092682244118826 and -58.963910168733676 degrees.
13:46:49 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092682244118826 and -58.963910168733676 degrees.
13:46:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:49 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:49 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:49 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.825965 (min) 1.28768 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.09752 (min) 0.761714 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.21611e-05 (min) 0.000665346 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.52013 (min) 11.6024 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.99809 (min) 8.47009 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.488 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1527:               5937 active elements
13:46:49 DEBUG   opendrift.models.basemodel:1538:               59.09414131582224 <- latitude  -> 59.18939795553621
13:46:49 DEBUG   opendrift.models.basemodel:1543:               10.907328326050202 <- longitude -> 11.03610039932329
13:46:49 DEBUG   opendrift.models.basemodel:1548:               -15.301395748048055   <- z ->   0.0
13:46:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:49 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:49 DEBUG   opendrift.models.physics_methods:1049:    min: 0.077880, mean: 4.726072, max: 10.408983
13:46:49 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.077880, mean: 4.726072, max: 10.408983
13:46:49 DEBUG   opendrift.models.basemodel:813: 945 elements hit coastline, moving back to water
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:46:49 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:49 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:49 DEBUG   opendrift.models.physics_methods:835: Advecting 47 of 5937 elements above 0.100m with wind-sheared ocean current (0.003827 m/s - 0.166392 m/s)
13:46:49 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:49 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:49 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.134070178470211
13:46:49 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:49 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:49 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:49 DEBUG   opendrift.models.oceandrift:582: 765 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 648 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 640 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 640 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 567 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 40 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 549 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 552 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 528 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:49 DEBUG   opendrift.models.oceandrift:582: 534 elements penetrated seafloor, lifting up
13:46:49 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:49 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:49 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:49 DEBUG   opendrift.models.basemodel:2945: 5937 active elements (0 deactivated)
13:46:49 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4063, already seeded 5937
13:46:49 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 5972 elements
13:46:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:49 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:49 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:49 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:49 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:49 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4995 (max)
13:46:49 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1527:               5972 active elements
13:46:49 DEBUG   opendrift.models.basemodel:1538:               59.09389476037405 <- latitude  -> 59.1901222602075
13:46:49 DEBUG   opendrift.models.basemodel:1543:               10.901770547522109 <- longitude -> 11.04231504740858
13:46:49 DEBUG   opendrift.models.basemodel:1548:               -15.317657470703125   <- z ->   0.0
13:46:49 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:836: Lifting 399 elements to seafloor.
13:46:49 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:49 INFO    opendrift.models.basemodel:2882: 2023-09-02 18:13:54.338376 - step 172 of 216 - 5972 active elements (0 deactivated)
13:46:49 DEBUG   opendrift.models.basemodel:2888: 4028 elements scheduled.
13:46:49 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 5972 elements
13:46:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:49 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:49 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:49 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:49 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:49 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:49 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:49 DEBUG   opendrift.models.basemodel:1253: Data needed for 5972 elements
13:46:49 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:49 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:50 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:50 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:50 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:50 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 19:00:00)
13:46:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:50 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3842 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3842 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3842 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3842 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3842 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3842 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2365 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2365 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2365 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2365 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2365 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2365 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3723 elements, expanding data 1
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:50 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:50 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.77) and
                      after (2023-09-02 19:00:00, weight 0.23) in time
13:46:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.098240027616235 and -58.95769551572431 degrees.
13:46:50 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.098240027616235 and -58.95769551572431 degrees.
13:46:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:50 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:50 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:50 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.760513 (min) 1.21265 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.99776 (min) 0.794454 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.19876e-05 (min) 0.000688899 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.88418 (min) 11.7671 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.88561 (min) 8.58114 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4995 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1527:               5972 active elements
13:46:50 DEBUG   opendrift.models.basemodel:1538:               59.09389476037405 <- latitude  -> 59.1901222602075
13:46:50 DEBUG   opendrift.models.basemodel:1543:               10.901770547522109 <- longitude -> 11.04231504740858
13:46:50 DEBUG   opendrift.models.basemodel:1548:               -15.298563003540039   <- z ->   0.0
13:46:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:50 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:50 DEBUG   opendrift.models.physics_methods:1049:    min: 0.179041, mean: 4.564417, max: 11.523147
13:46:50 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.179041, mean: 4.564417, max: 11.523147
13:46:50 DEBUG   opendrift.models.basemodel:813: 913 elements hit coastline, moving back to water
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:50 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:50 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:50 DEBUG   opendrift.models.physics_methods:835: Advecting 49 of 5972 elements above 0.100m with wind-sheared ocean current (0.000588 m/s - 0.184340 m/s)
13:46:50 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:50 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:50 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.16430672548015593
13:46:50 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:50 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:50 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:50 DEBUG   opendrift.models.oceandrift:582: 718 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 602 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 591 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 600 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 565 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 521 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 505 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 565 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 491 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:50 DEBUG   opendrift.models.oceandrift:582: 526 elements penetrated seafloor, lifting up
13:46:50 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:50 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:50 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:50 DEBUG   opendrift.models.basemodel:2945: 5972 active elements (0 deactivated)
13:46:50 DEBUG   opendrift.models.basemodel:1658: to be seeded: 4028, already seeded 5972
13:46:50 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 6007 elements
13:46:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:50 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:50 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:50 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:50 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:50 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5773 (max)
13:46:50 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1527:               6007 active elements
13:46:50 DEBUG   opendrift.models.basemodel:1538:               59.095141200077336 <- latitude  -> 59.1885140774573
13:46:50 DEBUG   opendrift.models.basemodel:1543:               10.895365594122502 <- longitude -> 11.042706077972356
13:46:50 DEBUG   opendrift.models.basemodel:1548:               -15.489500274658203   <- z ->   0.0
13:46:50 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:836: Lifting 371 elements to seafloor.
13:46:50 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:50 INFO    opendrift.models.basemodel:2882: 2023-09-02 18:23:54.338376 - step 173 of 216 - 6007 active elements (0 deactivated)
13:46:50 DEBUG   opendrift.models.basemodel:2888: 3993 elements scheduled.
13:46:50 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 6007 elements
13:46:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:50 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:50 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:50 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:50 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:50 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:50 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:50 DEBUG   opendrift.models.basemodel:1253: Data needed for 6007 elements
13:46:50 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:50 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:51 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:51 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-09-02 19:00:00)
13:46:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:51 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3875 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3875 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3875 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3875 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3875 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3875 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 304 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4990 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4990 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4990 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4990 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4990 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4990 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2345 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3751 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
13:46:51 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.60) and
                      after (2023-09-02 19:00:00, weight 0.40) in time
13:46:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.104644977813415 and -58.95730449337993 degrees.
13:46:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.104644977813415 and -58.95730449337993 degrees.
13:46:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:51 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:51 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:51 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.783661 (min) 1.19583 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.07565 (min) 0.96945 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.85238e-05 (min) 0.000649574 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.39744 (min) 12.3178 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.19651 (min) 7.86185 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5773 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1527:               6007 active elements
13:46:51 DEBUG   opendrift.models.basemodel:1538:               59.095141200077336 <- latitude  -> 59.1885140774573
13:46:51 DEBUG   opendrift.models.basemodel:1543:               10.895365594122502 <- longitude -> 11.042706077972356
13:46:51 DEBUG   opendrift.models.basemodel:1548:               -15.489500274658203   <- z ->   0.0
13:46:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:51 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:51 DEBUG   opendrift.models.physics_methods:1049:    min: 0.166825, mean: 4.478229, max: 11.049842
13:46:51 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.166825, mean: 4.478229, max: 11.049842
13:46:51 DEBUG   opendrift.models.basemodel:813: 903 elements hit coastline, moving back to water
13:46:51 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:51 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:51 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:51 DEBUG   opendrift.models.physics_methods:835: Advecting 45 of 6007 elements above 0.100m with wind-sheared ocean current (0.005212 m/s - 0.247142 m/s)
13:46:51 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:51 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:51 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.15108671791465758
13:46:51 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:51 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:51 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:51 DEBUG   opendrift.models.oceandrift:582: 737 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 661 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 614 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 577 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 556 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 531 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:51 DEBUG   opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
13:46:51 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:51 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:51 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:51 DEBUG   opendrift.models.basemodel:2945: 6007 active elements (0 deactivated)
13:46:51 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3993, already seeded 6007
13:46:51 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 6042 elements
13:46:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:51 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5176 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1527:               6042 active elements
13:46:51 DEBUG   opendrift.models.basemodel:1538:               59.096752104358075 <- latitude  -> 59.19046153974503
13:46:51 DEBUG   opendrift.models.basemodel:1543:               10.894399331390812 <- longitude -> 11.037152159078037
13:46:51 DEBUG   opendrift.models.basemodel:1548:               -15.220004081726074   <- z ->   0.0
13:46:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 390 elements to seafloor.
13:46:51 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:51 INFO    opendrift.models.basemodel:2882: 2023-09-02 18:33:54.338376 - step 174 of 216 - 6042 active elements (0 deactivated)
13:46:51 DEBUG   opendrift.models.basemodel:2888: 3958 elements scheduled.
13:46:51 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 6042 elements
13:46:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:51 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:51 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:51 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1253: Data needed for 6042 elements
13:46:51 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:51 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:51 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:51 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:51 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 19:00:00)
13:46:51 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:51 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 301 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 301 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 301 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 301 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 301 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 301 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5019 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2402 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5019 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2402 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5019 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2402 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5019 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2402 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5019 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2402 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5019 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2402 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3769 elements, expanding data 1
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
13:46:51 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:51 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.43) and
                      after (2023-09-02 19:00:00, weight 0.57) in time
13:46:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.105611233389865 and -58.96285840554608 degrees.
13:46:51 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.105611233389865 and -58.96285840554608 degrees.
13:46:51 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:51 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:51 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:51 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:51 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:51 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.780849 (min) 1.21467 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.986255 (min) 0.968711 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.87567e-05 (min) 0.000591101 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.83499 (min) 13.1747 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.9981 (min) 7.73835 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5176 (max)
13:46:51 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:51 DEBUG   opendrift.models.basemodel:1527:               6042 active elements
13:46:51 DEBUG   opendrift.models.basemodel:1538:               59.096752104358075 <- latitude  -> 59.19046153974503
13:46:51 DEBUG   opendrift.models.basemodel:1543:               10.894399331390812 <- longitude -> 11.037152159078037
13:46:51 DEBUG   opendrift.models.basemodel:1548:               -15.220004081726074   <- z ->   0.0
13:46:51 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:51 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:51 DEBUG   opendrift.models.physics_methods:1049:    min: 0.135307, mean: 4.387902, max: 11.322661
13:46:51 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.135307, mean: 4.387902, max: 11.322661
13:46:51 DEBUG   opendrift.models.basemodel:813: 966 elements hit coastline, moving back to water
13:46:51 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:46:51 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:51 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:51 DEBUG   opendrift.models.physics_methods:835: Advecting 49 of 6042 elements above 0.100m with wind-sheared ocean current (0.001039 m/s - 0.184405 m/s)
13:46:51 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:51 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:52 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1586392272816467
13:46:52 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:52 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:52 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:52 DEBUG   opendrift.models.oceandrift:582: 673 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 582 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 585 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 526 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 527 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 522 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 490 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 468 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:52 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:52 DEBUG   opendrift.models.basemodel:2945: 6042 active elements (0 deactivated)
13:46:52 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3958, already seeded 6042
13:46:52 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 6076 elements
13:46:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:52 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4965 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1527:               6076 active elements
13:46:52 DEBUG   opendrift.models.basemodel:1538:               59.0966538852059 <- latitude  -> 59.18943105658087
13:46:52 DEBUG   opendrift.models.basemodel:1543:               10.897821866020827 <- longitude -> 11.035258879352973
13:46:52 DEBUG   opendrift.models.basemodel:1548:               -15.220004081726074   <- z ->   0.0
13:46:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 372 elements to seafloor.
13:46:52 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:52 INFO    opendrift.models.basemodel:2882: 2023-09-02 18:43:54.338376 - step 175 of 216 - 6076 active elements (0 deactivated)
13:46:52 DEBUG   opendrift.models.basemodel:2888: 3924 elements scheduled.
13:46:52 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 6076 elements
13:46:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:52 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:52 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:52 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1253: Data needed for 6076 elements
13:46:52 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:52 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:52 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:52 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:52 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:52 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 19:00:00)
13:46:52 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:52 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3933 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3933 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3933 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3933 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3933 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3933 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5057 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5057 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5057 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5057 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5057 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5057 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3797 elements, expanding data 1
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 2
13:46:52 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:52 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.27) and
                      after (2023-09-02 19:00:00, weight 0.73) in time
13:46:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10218871242261 and -58.964751689738364 degrees.
13:46:52 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10218871242261 and -58.964751689738364 degrees.
13:46:52 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:52 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:52 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:52 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:52 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:52 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.852987 (min) 1.0629 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.914293 (min) 0.818898 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.26276e-05 (min) 0.000702293 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.21668 (min) 11.8981 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     y_wind: -5.87769 (min) 9.30806 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4965 (max)
13:46:52 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1527:               6076 active elements
13:46:52 DEBUG   opendrift.models.basemodel:1538:               59.0966538852059 <- latitude  -> 59.18943105658087
13:46:52 DEBUG   opendrift.models.basemodel:1543:               10.897821866020827 <- longitude -> 11.035258879352973
13:46:52 DEBUG   opendrift.models.basemodel:1548:               -15.220004081726074   <- z ->   0.0
13:46:52 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:52 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:52 DEBUG   opendrift.models.physics_methods:1049:    min: 0.150588, mean: 4.248704, max: 10.173669
13:46:52 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.150588, mean: 4.248704, max: 10.173669
13:46:52 DEBUG   opendrift.models.basemodel:813: 953 elements hit coastline, moving back to water
13:46:52 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:52 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:52 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:52 DEBUG   opendrift.models.physics_methods:835: Advecting 44 of 6076 elements above 0.100m with wind-sheared ocean current (0.005115 m/s - 0.238128 m/s)
13:46:52 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:52 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:52 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1280770710621643
13:46:52 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:52 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:52 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:52 DEBUG   opendrift.models.oceandrift:582: 681 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 571 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 521 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 509 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 41 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
13:46:52 DEBUG   opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
13:46:52 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:52 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:52 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:52 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:52 DEBUG   opendrift.models.basemodel:2945: 6076 active elements (0 deactivated)
13:46:52 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3924, already seeded 6076
13:46:52 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:52 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:52 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:52 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 6111 elements
13:46:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4652 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1527:               6111 active elements
13:46:53 DEBUG   opendrift.models.basemodel:1538:               59.09564492256484 <- latitude  -> 59.1885140774573
13:46:53 DEBUG   opendrift.models.basemodel:1543:               10.899951039147334 <- longitude -> 11.035631562612952
13:46:53 DEBUG   opendrift.models.basemodel:1548:               -15.308246841430664   <- z ->   0.0
13:46:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 375 elements to seafloor.
13:46:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:53 INFO    opendrift.models.basemodel:2882: 2023-09-02 18:53:54.338376 - step 176 of 216 - 6111 active elements (0 deactivated)
13:46:53 DEBUG   opendrift.models.basemodel:2888: 3889 elements scheduled.
13:46:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 6111 elements
13:46:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 6111 elements
13:46:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 18:00:00 (before)
                2023-09-02 19:00:00 (after)
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:53 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:53 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 19:00:00)
13:46:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 18:00:00) in space  (linearNDFast)
13:46:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:53 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3980 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3980 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3980 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3980 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3980 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3980 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5111 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2438 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5111 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2438 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5111 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2438 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5111 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2438 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5111 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2438 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5111 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2438 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3843 elements, expanding data 1
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:53 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:46:53 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 18:00:00, weight 0.10) and
                      after (2023-09-02 19:00:00, weight 0.90) in time
13:46:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10005954073346 and -58.96437900054391 degrees.
13:46:53 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10005954073346 and -58.96437900054391 degrees.
13:46:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:53 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:53 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:53 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.712265 (min) 1.20298 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.97901 (min) 0.689978 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.98304e-05 (min) 0.000794965 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     x_wind: -2.34782 (min) 12.7851 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.9647 (min) 8.16331 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4652 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1527:               6111 active elements
13:46:53 DEBUG   opendrift.models.basemodel:1538:               59.09564492256484 <- latitude  -> 59.1885140774573
13:46:53 DEBUG   opendrift.models.basemodel:1543:               10.899951039147334 <- longitude -> 11.035631562612952
13:46:53 DEBUG   opendrift.models.basemodel:1548:               -15.271844863891602   <- z ->   0.0
13:46:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:53 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:53 DEBUG   opendrift.models.physics_methods:1049:    min: 0.123260, mean: 4.169007, max: 11.155023
13:46:53 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.123260, mean: 4.169007, max: 11.155023
13:46:53 DEBUG   opendrift.models.basemodel:813: 945 elements hit coastline, moving back to water
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
13:46:53 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:53 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:53 DEBUG   opendrift.models.physics_methods:835: Advecting 44 of 6111 elements above 0.100m with wind-sheared ocean current (0.000146 m/s - 0.162533 m/s)
13:46:53 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:53 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:53 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.15397661992652892
13:46:53 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:53 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:53 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:53 DEBUG   opendrift.models.oceandrift:582: 692 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 626 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 588 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 540 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 529 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 521 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 46 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:53 DEBUG   opendrift.models.oceandrift:582: 497 elements penetrated seafloor, lifting up
13:46:53 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:46:53 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:46:53 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:53 DEBUG   opendrift.models.basemodel:2945: 6111 active elements (0 deactivated)
13:46:53 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3889, already seeded 6111
13:46:53 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 6146 elements
13:46:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:53 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:53 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:53 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:53 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:53 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4421 (max)
13:46:53 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1527:               6146 active elements
13:46:53 DEBUG   opendrift.models.basemodel:1538:               59.09650513329504 <- latitude  -> 59.188633073552325
13:46:53 DEBUG   opendrift.models.basemodel:1543:               10.903506192474545 <- longitude -> 11.035573471066254
13:46:53 DEBUG   opendrift.models.basemodel:1548:               -15.12530445098877   <- z ->   0.0
13:46:53 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:836: Lifting 400 elements to seafloor.
13:46:53 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:53 INFO    opendrift.models.basemodel:2882: 2023-09-02 19:03:54.338376 - step 177 of 216 - 6146 active elements (0 deactivated)
13:46:53 DEBUG   opendrift.models.basemodel:2888: 3854 elements scheduled.
13:46:53 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 6146 elements
13:46:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:53 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:53 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:53 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:53 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:53 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:53 DEBUG   opendrift.models.basemodel:1253: Data needed for 6146 elements
13:46:53 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:53 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:54 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:54 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:54 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:54 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:54 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 20:00:00)
13:46:54 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:54 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space  (linearNDFast)
13:46:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3984 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3984 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3984 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3984 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3984 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3984 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5165 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5165 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5165 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5165 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5165 elements, expanding data 1
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 2
13:46:54 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5165 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3862 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:55 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.93) and
                      after (2023-09-02 20:00:00, weight 0.07) in time
13:46:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09650437344552 and -58.96443707712846 degrees.
13:46:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09650437344552 and -58.96443707712846 degrees.
13:46:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:55 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:55 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:55 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.770078 (min) 1.1398 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.976584 (min) 0.749744 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.9132e-05 (min) 0.000701919 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.00783 (min) 11.4853 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.54665 (min) 8.31145 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4421 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1527:               6146 active elements
13:46:55 DEBUG   opendrift.models.basemodel:1538:               59.09650513329504 <- latitude  -> 59.188633073552325
13:46:55 DEBUG   opendrift.models.basemodel:1543:               10.903506192474545 <- longitude -> 11.035573471066254
13:46:55 DEBUG   opendrift.models.basemodel:1548:               -15.12530445098877   <- z ->   0.0
13:46:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:55 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:55 DEBUG   opendrift.models.physics_methods:1049:    min: 0.062059, mean: 4.043228, max: 9.868305
13:46:55 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.062059, mean: 4.043228, max: 9.868305
13:46:55 DEBUG   opendrift.models.basemodel:813: 962 elements hit coastline, moving back to water
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
13:46:55 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:55 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:55 DEBUG   opendrift.models.physics_methods:835: Advecting 44 of 6146 elements above 0.100m with wind-sheared ocean current (0.000168 m/s - 0.155985 m/s)
13:46:55 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:55 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:55 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.12050420505054472
13:46:55 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:55 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:55 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:55 DEBUG   opendrift.models.oceandrift:582: 744 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 540 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 574 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 551 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 556 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 50 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 501 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:55 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:55 DEBUG   opendrift.models.basemodel:2945: 6146 active elements (0 deactivated)
13:46:55 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3854, already seeded 6146
13:46:55 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 6180 elements
13:46:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:55 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4229 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1527:               6180 active elements
13:46:55 DEBUG   opendrift.models.basemodel:1538:               59.09791502247526 <- latitude  -> 59.18978226491946
13:46:55 DEBUG   opendrift.models.basemodel:1543:               10.90228586578603 <- longitude -> 11.035391288033672
13:46:55 DEBUG   opendrift.models.basemodel:1548:               -14.613967458431915   <- z ->   0.0
13:46:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 410 elements to seafloor.
13:46:55 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:55 INFO    opendrift.models.basemodel:2882: 2023-09-02 19:13:54.338376 - step 178 of 216 - 6180 active elements (0 deactivated)
13:46:55 DEBUG   opendrift.models.basemodel:2888: 3820 elements scheduled.
13:46:55 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 6180 elements
13:46:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:55 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:55 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:55 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:55 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:55 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1253: Data needed for 6180 elements
13:46:55 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:55 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:55 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:55 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:55 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:55 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:55 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 20:00:00)
13:46:55 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:55 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space  (linearNDFast)
13:46:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4008 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4008 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4008 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4008 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4008 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 332 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5192 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5192 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5192 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5192 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5192 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3884 elements, expanding data 1
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
13:46:55 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:55 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.77) and
                      after (2023-09-02 20:00:00, weight 0.23) in time
13:46:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09772469070691 and -58.96461926433281 degrees.
13:46:55 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09772469070691 and -58.96461926433281 degrees.
13:46:55 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:55 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:55 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:55 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:55 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:55 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.870391 (min) 1.24923 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.902778 (min) 0.846805 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.07814e-05 (min) 0.000737863 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.48036 (min) 11.609 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.63548 (min) 8.59769 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4229 (max)
13:46:55 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:55 DEBUG   opendrift.models.basemodel:1527:               6180 active elements
13:46:55 DEBUG   opendrift.models.basemodel:1538:               59.09791502247526 <- latitude  -> 59.18978226491946
13:46:55 DEBUG   opendrift.models.basemodel:1543:               10.90228586578603 <- longitude -> 11.035391288033672
13:46:55 DEBUG   opendrift.models.basemodel:1548:               -14.613967458431915   <- z ->   0.0
13:46:55 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:55 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:55 DEBUG   opendrift.models.physics_methods:1049:    min: 0.124412, mean: 3.882904, max: 10.357800
13:46:55 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.124412, mean: 3.882904, max: 10.357800
13:46:55 DEBUG   opendrift.models.basemodel:813: 974 elements hit coastline, moving back to water
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:46:55 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:55 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:55 DEBUG   opendrift.models.physics_methods:835: Advecting 40 of 6180 elements above 0.100m with wind-sheared ocean current (0.004538 m/s - 0.182069 m/s)
13:46:55 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:55 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:55 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13275495031459805
13:46:55 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:55 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:55 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:55 DEBUG   opendrift.models.oceandrift:582: 701 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 549 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 534 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:46:55 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:46:55 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:55 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:55 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 491 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 49 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
13:46:56 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:56 DEBUG   opendrift.models.basemodel:2945: 6180 active elements (0 deactivated)
13:46:56 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3820, already seeded 6180
13:46:56 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 6215 elements
13:46:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:56 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3574 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1527:               6215 active elements
13:46:56 DEBUG   opendrift.models.basemodel:1538:               59.097551812309824 <- latitude  -> 59.18878241009261
13:46:56 DEBUG   opendrift.models.basemodel:1543:               10.907319055875051 <- longitude -> 11.035391288033672
13:46:56 DEBUG   opendrift.models.basemodel:1548:               -15.316529985511693   <- z ->   0.0
13:46:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 442 elements to seafloor.
13:46:56 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:56 INFO    opendrift.models.basemodel:2882: 2023-09-02 19:23:54.338376 - step 179 of 216 - 6215 active elements (0 deactivated)
13:46:56 DEBUG   opendrift.models.basemodel:2888: 3785 elements scheduled.
13:46:56 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 6215 elements
13:46:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:56 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 6215 elements
13:46:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:56 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:56 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 20:00:00)
13:46:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:56 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space  (linearNDFast)
13:46:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4043 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 338 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 82 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5198 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2495 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5198 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2495 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5198 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2495 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5198 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2495 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5198 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2495 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5198 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2495 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3921 elements, expanding data 1
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 2
13:46:56 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:46:56 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.60) and
                      after (2023-09-02 20:00:00, weight 0.40) in time
13:46:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09269151621453 and -58.96461926433281 degrees.
13:46:56 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09269151621453 and -58.96461926433281 degrees.
13:46:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:56 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:56 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:56 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.82502 (min) 1.19744 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.12914 (min) 0.825705 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -5.62414e-05 (min) 0.000702836 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     x_wind: -3.19435 (min) 11.2117 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.74197 (min) 8.04471 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3574 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1527:               6215 active elements
13:46:56 DEBUG   opendrift.models.basemodel:1538:               59.097551812309824 <- latitude  -> 59.18878241009261
13:46:56 DEBUG   opendrift.models.basemodel:1543:               10.907319055875051 <- longitude -> 11.035391288033672
13:46:56 DEBUG   opendrift.models.basemodel:1548:               -15.264883041381836   <- z ->   0.0
13:46:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:56 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:56 DEBUG   opendrift.models.physics_methods:1049:    min: 0.046740, mean: 3.802653, max: 10.333685
13:46:56 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.046740, mean: 3.802653, max: 10.333685
13:46:56 DEBUG   opendrift.models.basemodel:813: 929 elements hit coastline, moving back to water
13:46:56 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:56 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:56 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:56 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 6215 elements above 0.100m with wind-sheared ocean current (0.007552 m/s - 0.183319 m/s)
13:46:56 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:56 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:56 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.13213753310640333
13:46:56 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:56 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:56 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:56 DEBUG   opendrift.models.oceandrift:582: 723 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 587 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 542 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 540 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 483 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 466 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:56 DEBUG   opendrift.models.oceandrift:582: 478 elements penetrated seafloor, lifting up
13:46:56 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:56 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:56 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:56 DEBUG   opendrift.models.basemodel:2945: 6215 active elements (0 deactivated)
13:46:56 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3785, already seeded 6215
13:46:56 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 6250 elements
13:46:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:56 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:56 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:56 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:56 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:56 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3823 (max)
13:46:56 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1527:               6250 active elements
13:46:56 DEBUG   opendrift.models.basemodel:1538:               59.09511205600305 <- latitude  -> 59.18971564153178
13:46:56 DEBUG   opendrift.models.basemodel:1543:               10.907806628049824 <- longitude -> 11.035391288033672
13:46:56 DEBUG   opendrift.models.basemodel:1548:               -15.264883041381836   <- z ->   0.0
13:46:56 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:836: Lifting 415 elements to seafloor.
13:46:56 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:56 INFO    opendrift.models.basemodel:2882: 2023-09-02 19:33:54.338376 - step 180 of 216 - 6250 active elements (0 deactivated)
13:46:56 DEBUG   opendrift.models.basemodel:2888: 3750 elements scheduled.
13:46:56 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 6250 elements
13:46:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:56 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:56 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:56 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:56 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:56 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:56 DEBUG   opendrift.models.basemodel:1253: Data needed for 6250 elements
13:46:56 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:56 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:57 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:57 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:57 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:57 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:57 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 20:00:00)
13:46:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:57 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space  (linearNDFast)
13:46:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4095 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4095 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4095 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4095 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4095 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4095 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5227 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5227 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5227 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5227 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5227 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5227 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3973 elements, expanding data 1
13:46:57 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:46:57 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.43) and
                      after (2023-09-02 20:00:00, weight 0.57) in time
13:46:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09220393126909 and -58.96461926433281 degrees.
13:46:57 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09220393126909 and -58.96461926433281 degrees.
13:46:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:57 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:57 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:57 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.808108 (min) 1.42237 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.910729 (min) 0.781176 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -7.10515e-05 (min) 0.000702313 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.31657 (min) 11.5948 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.64147 (min) 8.07585 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3823 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1527:               6250 active elements
13:46:57 DEBUG   opendrift.models.basemodel:1538:               59.09511205600305 <- latitude  -> 59.18971564153178
13:46:57 DEBUG   opendrift.models.basemodel:1543:               10.907806628049824 <- longitude -> 11.035391288033672
13:46:57 DEBUG   opendrift.models.basemodel:1548:               -15.264883041381836   <- z ->   0.0
13:46:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:57 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:57 DEBUG   opendrift.models.physics_methods:1049:    min: 0.121935, mean: 3.629939, max: 10.001769
13:46:57 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.121935, mean: 3.629939, max: 10.001769
13:46:57 DEBUG   opendrift.models.basemodel:813: 1001 elements hit coastline, moving back to water
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
13:46:57 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:57 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:57 DEBUG   opendrift.models.physics_methods:835: Advecting 42 of 6250 elements above 0.100m with wind-sheared ocean current (0.002135 m/s - 0.180559 m/s)
13:46:57 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:57 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:57 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1237856679163742
13:46:57 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:57 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:57 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:57 DEBUG   opendrift.models.oceandrift:582: 712 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 539 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 537 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 44 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 442 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 43 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:46:57 DEBUG   opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
13:46:57 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:57 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:57 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:57 DEBUG   opendrift.models.basemodel:2945: 6250 active elements (0 deactivated)
13:46:57 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3750, already seeded 6250
13:46:57 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:46:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 6285 elements
13:46:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:57 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:57 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:57 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:57 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:57 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2995 (max)
13:46:57 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1527:               6285 active elements
13:46:57 DEBUG   opendrift.models.basemodel:1538:               59.09526588004528 <- latitude  -> 59.1903744275254
13:46:57 DEBUG   opendrift.models.basemodel:1543:               10.908203067786147 <- longitude -> 11.035391288033672
13:46:57 DEBUG   opendrift.models.basemodel:1548:               -15.264883041381836   <- z ->   0.0
13:46:57 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:836: Lifting 396 elements to seafloor.
13:46:57 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:57 INFO    opendrift.models.basemodel:2882: 2023-09-02 19:43:54.338376 - step 181 of 216 - 6285 active elements (0 deactivated)
13:46:57 DEBUG   opendrift.models.basemodel:2888: 3715 elements scheduled.
13:46:57 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 6285 elements
13:46:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:57 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:57 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:57 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:57 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:57 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:57 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:57 DEBUG   opendrift.models.basemodel:1253: Data needed for 6285 elements
13:46:57 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:57 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:58 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:58 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:58 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:58 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 20:00:00)
13:46:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:58 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space  (linearNDFast)
13:46:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4137 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 362 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4137 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 362 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4137 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 362 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4137 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 362 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4137 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 362 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4137 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 362 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 81 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5271 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5271 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5271 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5271 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5271 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5271 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4005 elements, expanding data 1
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 2
13:46:58 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:46:58 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.27) and
                      after (2023-09-02 20:00:00, weight 0.73) in time
13:46:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09180749858703 and -58.96461926433281 degrees.
13:46:58 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09180749858703 and -58.96461926433281 degrees.
13:46:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:58 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:46:58 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:46:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:58 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.857397 (min) 1.13602 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.97478 (min) 0.797345 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -8.119e-05 (min) 0.000720043 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.75439 (min) 10.4186 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.80157 (min) 7.05617 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2995 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1527:               6285 active elements
13:46:58 DEBUG   opendrift.models.basemodel:1538:               59.09526588004528 <- latitude  -> 59.1903744275254
13:46:58 DEBUG   opendrift.models.basemodel:1543:               10.908203067786147 <- longitude -> 11.035391288033672
13:46:58 DEBUG   opendrift.models.basemodel:1548:               -15.264883041381836   <- z ->   0.0
13:46:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:58 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:46:58 DEBUG   opendrift.models.physics_methods:1049:    min: 0.010343, mean: 3.494331, max: 9.643761
13:46:58 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.010343, mean: 3.494331, max: 9.643761
13:46:58 DEBUG   opendrift.models.basemodel:813: 967 elements hit coastline, moving back to water
13:46:58 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:46:58 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:46:58 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:46:58 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 6285 elements above 0.100m with wind-sheared ocean current (0.000794 m/s - 0.209150 m/s)
13:46:58 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:46:58 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:46:58 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11508285805709838
13:46:58 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:46:58 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:46:58 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:46:58 DEBUG   opendrift.models.oceandrift:582: 702 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 536 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 460 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 441 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 45 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
13:46:58 DEBUG   opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
13:46:58 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:46:58 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:46:58 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:46:58 DEBUG   opendrift.models.basemodel:2945: 6285 active elements (0 deactivated)
13:46:58 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3715, already seeded 6285
13:46:58 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:46:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:46:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 6319 elements
13:46:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:58 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:58 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:46:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:58 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:46:58 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:46:58 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3845 (max)
13:46:58 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1527:               6319 active elements
13:46:58 DEBUG   opendrift.models.basemodel:1538:               59.096002309216026 <- latitude  -> 59.19035528036899
13:46:58 DEBUG   opendrift.models.basemodel:1543:               10.909745211445918 <- longitude -> 11.03659968085821
13:46:58 DEBUG   opendrift.models.basemodel:1548:               -15.254883041381836   <- z ->   0.0
13:46:58 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:836: Lifting 439 elements to seafloor.
13:46:58 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:46:58 INFO    opendrift.models.basemodel:2882: 2023-09-02 19:53:54.338376 - step 182 of 216 - 6319 active elements (0 deactivated)
13:46:58 DEBUG   opendrift.models.basemodel:2888: 3681 elements scheduled.
13:46:58 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:46:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:46:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:46:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 6319 elements
13:46:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:46:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:46:58 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:46:58 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:46:58 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:46:58 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:58 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:58 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:46:58 DEBUG   opendrift.models.basemodel:1253: Data needed for 6319 elements
13:46:58 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:46:58 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 19:00:00 (before)
                2023-09-02 20:00:00 (after)
13:46:59 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:46:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:46:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:46:59 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:46:59 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:46:59 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:46:59 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x6) for time after (2023-09-02 20:00:00)
13:46:59 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 19:00:00) in space  (linearNDFast)
13:46:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:59 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 20:00:00) in space  (linearNDFast)
13:46:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4128 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4128 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4128 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4128 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4128 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4128 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 361 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 3
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5309 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5309 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5309 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5309 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5309 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5309 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
13:46:59 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:46:59 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 19:00:00, weight 0.10) and
                      after (2023-09-02 20:00:00, weight 0.90) in time
13:47:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09026536441655 and -58.96341087388742 degrees.
13:47:00 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09026536441655 and -58.96341087388742 degrees.
13:47:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:00 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:00 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:00 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.770352 (min) 1.08763 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.892102 (min) 0.740313 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.29242e-05 (min) 0.000622195 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.79596 (min) 10.0702 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.45242 (min) 7.15855 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3845 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1527:               6319 active elements
13:47:00 DEBUG   opendrift.models.basemodel:1538:               59.096002309216026 <- latitude  -> 59.19035528036899
13:47:00 DEBUG   opendrift.models.basemodel:1543:               10.909745211445918 <- longitude -> 11.03659968085821
13:47:00 DEBUG   opendrift.models.basemodel:1548:               -15.254883041381836   <- z ->   0.0
13:47:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:00 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:00 DEBUG   opendrift.models.physics_methods:1049:    min: 0.052256, mean: 3.399979, max: 8.895128
13:47:00 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.052256, mean: 3.399979, max: 8.895128
13:47:00 DEBUG   opendrift.models.basemodel:813: 945 elements hit coastline, moving back to water
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 140 elements to seafloor.
13:47:00 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:00 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:00 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6319 elements above 0.100m with wind-sheared ocean current (0.013856 m/s - 0.129968 m/s)
13:47:00 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:00 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:00 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09790950359304428
13:47:00 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:00 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:00 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:00 DEBUG   opendrift.models.oceandrift:582: 668 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 522 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 59 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
13:47:00 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:47:00 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:47:00 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:47:00 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:00 DEBUG   opendrift.models.basemodel:2945: 6319 active elements (0 deactivated)
13:47:00 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3681, already seeded 6319
13:47:00 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 6354 elements
13:47:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:00 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
13:47:00 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:00 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:00 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:00 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3537 (max)
13:47:00 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1527:               6354 active elements
13:47:00 DEBUG   opendrift.models.basemodel:1538:               59.09428020747173 <- latitude  -> 59.188835654722254
13:47:00 DEBUG   opendrift.models.basemodel:1543:               10.909735409733742 <- longitude -> 11.037917907811806
13:47:00 DEBUG   opendrift.models.basemodel:1548:               -15.259505500793457   <- z ->   0.0
13:47:00 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:836: Lifting 432 elements to seafloor.
13:47:00 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:00 INFO    opendrift.models.basemodel:2882: 2023-09-02 20:03:54.338376 - step 183 of 216 - 6354 active elements (0 deactivated)
13:47:00 DEBUG   opendrift.models.basemodel:2888: 3646 elements scheduled.
13:47:00 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 6354 elements
13:47:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:00 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:00 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:00 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:00 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:00 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:00 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:00 DEBUG   opendrift.models.basemodel:1253: Data needed for 6354 elements
13:47:00 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:00 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:01 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:01 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
13:47:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:01 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4127 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4127 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4127 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4127 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4127 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4127 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5346 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2502 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5346 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2502 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5346 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2502 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5346 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2502 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5346 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2502 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5346 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2502 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4002 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:01 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.93) and
                      after (2023-09-02 21:00:00, weight 0.07) in time
13:47:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09027515148561 and -58.96209263981101 degrees.
13:47:01 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09027515148561 and -58.96209263981101 degrees.
13:47:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:01 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:01 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:01 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.846247 (min) 1.19567 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.882548 (min) 0.681245 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000128176 (min) 0.000752026 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.2456 (min) 10.6931 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.14997 (min) 8.99861 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3537 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1527:               6354 active elements
13:47:01 DEBUG   opendrift.models.basemodel:1538:               59.09428020747173 <- latitude  -> 59.188835654722254
13:47:01 DEBUG   opendrift.models.basemodel:1543:               10.909735409733742 <- longitude -> 11.037917907811806
13:47:01 DEBUG   opendrift.models.basemodel:1548:               -15.259505500793457   <- z ->   0.0
13:47:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:01 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:01 DEBUG   opendrift.models.physics_methods:1049:    min: 0.035710, mean: 3.257956, max: 9.224368
13:47:01 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.035710, mean: 3.257956, max: 9.224368
13:47:01 DEBUG   opendrift.models.basemodel:813: 971 elements hit coastline, moving back to water
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
13:47:01 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:01 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:01 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 6354 elements above 0.100m with wind-sheared ocean current (0.001949 m/s - 0.151105 m/s)
13:47:01 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:01 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:01 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1052912855068016
13:47:01 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:01 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:01 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:01 DEBUG   opendrift.models.oceandrift:582: 734 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 555 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 503 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:47:01 DEBUG   opendrift.models.oceandrift:582: 413 elements penetrated seafloor, lifting up
13:47:01 DEBUG   opendrift.models.oceandrift:600: 47 elements reached seafloor, set to bottom
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
13:47:01 DEBUG   opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
13:47:01 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:01 DEBUG   opendrift.models.basemodel:2945: 6354 active elements (0 deactivated)
13:47:01 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3646, already seeded 6354
13:47:01 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 6389 elements
13:47:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:01 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:01 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:01 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:01 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4315 (max)
13:47:01 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1527:               6389 active elements
13:47:01 DEBUG   opendrift.models.basemodel:1538:               59.09385287707729 <- latitude  -> 59.190325543402814
13:47:01 DEBUG   opendrift.models.basemodel:1543:               10.909485950457116 <- longitude -> 11.040494516118468
13:47:01 DEBUG   opendrift.models.basemodel:1548:               -14.620112331092262   <- z ->   0.0
13:47:01 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:836: Lifting 464 elements to seafloor.
13:47:01 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:01 INFO    opendrift.models.basemodel:2882: 2023-09-02 20:13:54.338376 - step 184 of 216 - 6389 active elements (0 deactivated)
13:47:01 DEBUG   opendrift.models.basemodel:2888: 3611 elements scheduled.
13:47:01 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 6389 elements
13:47:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:01 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:01 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:01 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:01 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:01 DEBUG   opendrift.models.basemodel:1253: Data needed for 6389 elements
13:47:01 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:01 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:01 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:01 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:01 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 21:00:00)
13:47:01 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:01 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 370 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 370 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 370 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 370 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 370 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5369 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5369 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5369 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5369 elements, expanding data 1
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:01 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5369 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4045 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:02 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.77) and
                      after (2023-09-02 21:00:00, weight 0.23) in time
13:47:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09052461487066 and -58.95951603381728 degrees.
13:47:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09052461487066 and -58.95951603381728 degrees.
13:47:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:02 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:02 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:02 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.817499 (min) 1.35921 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05839 (min) 0.763246 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000161054 (min) 0.000672195 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     x_wind: -4.35386 (min) 11.951 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.6719 (min) 8.4975 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4315 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1527:               6389 active elements
13:47:02 DEBUG   opendrift.models.basemodel:1538:               59.09385287707729 <- latitude  -> 59.190325543402814
13:47:02 DEBUG   opendrift.models.basemodel:1543:               10.909485950457116 <- longitude -> 11.040494516118468
13:47:02 DEBUG   opendrift.models.basemodel:1548:               -14.620112331092262   <- z ->   0.0
13:47:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:02 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:02 DEBUG   opendrift.models.physics_methods:1049:    min: 0.065206, mean: 3.040709, max: 10.212680
13:47:02 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.065206, mean: 3.040709, max: 10.212680
13:47:02 DEBUG   opendrift.models.basemodel:813: 965 elements hit coastline, moving back to water
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:47:02 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:02 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:02 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 6389 elements above 0.100m with wind-sheared ocean current (0.006511 m/s - 0.158640 m/s)
13:47:02 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:02 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:02 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.1290611638766098
13:47:02 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:02 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:02 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:02 DEBUG   opendrift.models.oceandrift:582: 641 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 505 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 473 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 54 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 48 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:47:02 DEBUG   opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
13:47:02 DEBUG   opendrift.models.oceandrift:600: 56 elements reached seafloor, set to bottom
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
13:47:02 DEBUG   opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
13:47:02 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:02 DEBUG   opendrift.models.basemodel:2945: 6389 active elements (0 deactivated)
13:47:02 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3611, already seeded 6389
13:47:02 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 6423 elements
13:47:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:02 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:02 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:02 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:02 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.415 (max)
13:47:02 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1527:               6423 active elements
13:47:02 DEBUG   opendrift.models.basemodel:1538:               59.094821151373374 <- latitude  -> 59.19062115231839
13:47:02 DEBUG   opendrift.models.basemodel:1543:               10.907519518056848 <- longitude -> 11.04335552632253
13:47:02 DEBUG   opendrift.models.basemodel:1548:               -15.051205863952637   <- z ->   0.0
13:47:02 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:836: Lifting 490 elements to seafloor.
13:47:02 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:02 INFO    opendrift.models.basemodel:2882: 2023-09-02 20:23:54.338376 - step 185 of 216 - 6423 active elements (0 deactivated)
13:47:02 DEBUG   opendrift.models.basemodel:2888: 3577 elements scheduled.
13:47:02 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 6423 elements
13:47:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:02 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:02 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:02 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:02 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:02 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:02 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:02 DEBUG   opendrift.models.basemodel:1253: Data needed for 6423 elements
13:47:02 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:02 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:02 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:02 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:02 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:02 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
13:47:02 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:02 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4213 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4213 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4213 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4213 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4213 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4213 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 379 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5403 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5403 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5403 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5403 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5403 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5403 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4075 elements, expanding data 1
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
13:47:02 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:02 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.60) and
                      after (2023-09-02 21:00:00, weight 0.40) in time
13:47:02 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.95665502628481 degrees.
13:47:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.95665502628481 degrees.
13:47:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:03 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:03 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:03 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.726583 (min) 1.29357 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.24312 (min) 0.790657 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000149556 (min) 0.000627499 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.03768 (min) 9.69483 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.89765 (min) 8.53285 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.415 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1527:               6423 active elements
13:47:03 DEBUG   opendrift.models.basemodel:1538:               59.094821151373374 <- latitude  -> 59.19062115231839
13:47:03 DEBUG   opendrift.models.basemodel:1543:               10.907519518056848 <- longitude -> 11.04335552632253
13:47:03 DEBUG   opendrift.models.basemodel:1548:               -15.020978927612305   <- z ->   0.0
13:47:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:03 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:03 DEBUG   opendrift.models.physics_methods:1049:    min: 0.081007, mean: 2.876928, max: 8.290089
13:47:03 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.081007, mean: 2.876928, max: 8.290089
13:47:03 DEBUG   opendrift.models.basemodel:813: 1008 elements hit coastline, moving back to water
13:47:03 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:03 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:03 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:03 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 6423 elements above 0.100m with wind-sheared ocean current (0.025864 m/s - 0.139359 m/s)
13:47:03 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:03 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:03 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0850435921808052
13:47:03 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:03 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:03 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:03 DEBUG   opendrift.models.oceandrift:582: 688 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 517 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 437 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 419 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:47:03 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:03 DEBUG   opendrift.models.basemodel:2945: 6423 active elements (0 deactivated)
13:47:03 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3577, already seeded 6423
13:47:03 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 6458 elements
13:47:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:03 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4214 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1527:               6458 active elements
13:47:03 DEBUG   opendrift.models.basemodel:1538:               59.09433042689231 <- latitude  -> 59.19027315125085
13:47:03 DEBUG   opendrift.models.basemodel:1543:               10.907519518056844 <- longitude -> 11.040884341907907
13:47:03 DEBUG   opendrift.models.basemodel:1548:               -15.010979881286621   <- z ->   0.0
13:47:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 477 elements to seafloor.
13:47:03 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:03 INFO    opendrift.models.basemodel:2882: 2023-09-02 20:33:54.338376 - step 186 of 216 - 6458 active elements (0 deactivated)
13:47:03 DEBUG   opendrift.models.basemodel:2888: 3542 elements scheduled.
13:47:03 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 6458 elements
13:47:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:03 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 6458 elements
13:47:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:03 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
13:47:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:03 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4228 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4228 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4228 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4228 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4228 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4228 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5441 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5441 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5441 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5441 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5441 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5441 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4085 elements, expanding data 1
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
13:47:03 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:03 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.43) and
                      after (2023-09-02 21:00:00, weight 0.57) in time
13:47:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.959126217764734 degrees.
13:47:03 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.959126217764734 degrees.
13:47:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:03 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:03 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:03 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.80416 (min) 1.21862 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.10538 (min) 0.706614 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000136902 (min) 0.000623679 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.52288 (min) 9.43368 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.74973 (min) 9.05465 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4214 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1527:               6458 active elements
13:47:03 DEBUG   opendrift.models.basemodel:1538:               59.09433042689231 <- latitude  -> 59.19027315125085
13:47:03 DEBUG   opendrift.models.basemodel:1543:               10.907519518056844 <- longitude -> 11.040884341907907
13:47:03 DEBUG   opendrift.models.basemodel:1548:               -15.010979881286621   <- z ->   0.0
13:47:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:03 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:03 DEBUG   opendrift.models.physics_methods:1049:    min: 0.031267, mean: 2.700134, max: 8.543605
13:47:03 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.031267, mean: 2.700134, max: 8.543605
13:47:03 DEBUG   opendrift.models.basemodel:813: 1009 elements hit coastline, moving back to water
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
13:47:03 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:03 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:03 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6458 elements above 0.100m with wind-sheared ocean current (0.001585 m/s - 0.171121 m/s)
13:47:03 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:03 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:03 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09032424350984573
13:47:03 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:03 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:03 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:03 DEBUG   opendrift.models.oceandrift:582: 668 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 543 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 484 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 478 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 409 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 57 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 378 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 53 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 385 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 389 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 51 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
13:47:03 DEBUG   opendrift.models.oceandrift:582: 341 elements penetrated seafloor, lifting up
13:47:03 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:47:03 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:47:03 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:03 DEBUG   opendrift.models.basemodel:2945: 6458 active elements (0 deactivated)
13:47:03 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3542, already seeded 6458
13:47:03 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 6493 elements
13:47:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:03 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:03 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:03 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:03 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:03 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3863 (max)
13:47:03 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1527:               6493 active elements
13:47:03 DEBUG   opendrift.models.basemodel:1538:               59.096031814682924 <- latitude  -> 59.1902765693759
13:47:03 DEBUG   opendrift.models.basemodel:1543:               10.907519518056844 <- longitude -> 11.044320961187744
13:47:03 DEBUG   opendrift.models.basemodel:1548:               -15.174021949768067   <- z ->   0.0
13:47:03 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:836: Lifting 457 elements to seafloor.
13:47:03 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:03 INFO    opendrift.models.basemodel:2882: 2023-09-02 20:43:54.338376 - step 187 of 216 - 6493 active elements (0 deactivated)
13:47:03 DEBUG   opendrift.models.basemodel:2888: 3507 elements scheduled.
13:47:03 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 6493 elements
13:47:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:03 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:03 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:03 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:03 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:03 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:03 DEBUG   opendrift.models.basemodel:1253: Data needed for 6493 elements
13:47:03 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:03 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:04 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:04 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:04 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:04 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-09-02 21:00:00)
13:47:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:04 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 386 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 386 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 386 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 386 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 386 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4226 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 386 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5449 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5449 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5449 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5449 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5449 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5449 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2507 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4079 elements, expanding data 1
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 2
13:47:04 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:04 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.27) and
                      after (2023-09-02 21:00:00, weight 0.73) in time
13:47:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.95568959123276 degrees.
13:47:04 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.95568959123276 degrees.
13:47:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:04 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:04 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:04 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.833879 (min) 1.18521 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.34486 (min) 0.799775 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000134969 (min) 0.000634216 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.07428 (min) 9.50618 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.109 (min) 9.37909 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3863 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1527:               6493 active elements
13:47:04 DEBUG   opendrift.models.basemodel:1538:               59.096031814682924 <- latitude  -> 59.1902765693759
13:47:04 DEBUG   opendrift.models.basemodel:1543:               10.907519518056844 <- longitude -> 11.044320961187744
13:47:04 DEBUG   opendrift.models.basemodel:1548:               -15.174021949768067   <- z ->   0.0
13:47:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:04 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:04 DEBUG   opendrift.models.physics_methods:1049:    min: 0.051866, mean: 2.551217, max: 8.212449
13:47:04 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.051866, mean: 2.551217, max: 8.212449
13:47:04 DEBUG   opendrift.models.basemodel:813: 961 elements hit coastline, moving back to water
13:47:04 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:04 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:04 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:04 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 6493 elements above 0.100m with wind-sheared ocean current (0.000438 m/s - 0.127922 m/s)
13:47:04 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:04 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:04 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08345817503030777
13:47:04 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:04 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:04 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:04 DEBUG   opendrift.models.oceandrift:582: 599 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 113 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 113 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 113 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 492 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 423 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 387 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 388 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:04 DEBUG   opendrift.models.oceandrift:582: 344 elements penetrated seafloor, lifting up
13:47:04 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:04 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:04 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:04 DEBUG   opendrift.models.basemodel:2945: 6493 active elements (0 deactivated)
13:47:04 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3507, already seeded 6493
13:47:04 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 6528 elements
13:47:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:04 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:04 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:04 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:04 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:04 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3642 (max)
13:47:04 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1527:               6528 active elements
13:47:04 DEBUG   opendrift.models.basemodel:1538:               59.09571903433931 <- latitude  -> 59.18956295625036
13:47:04 DEBUG   opendrift.models.basemodel:1543:               10.907519518056846 <- longitude -> 11.042530489542566
13:47:04 DEBUG   opendrift.models.basemodel:1548:               -14.876449813842774   <- z ->   0.0
13:47:04 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:836: Lifting 499 elements to seafloor.
13:47:04 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:04 INFO    opendrift.models.basemodel:2882: 2023-09-02 20:53:54.338376 - step 188 of 216 - 6528 active elements (0 deactivated)
13:47:04 DEBUG   opendrift.models.basemodel:2888: 3472 elements scheduled.
13:47:04 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 6528 elements
13:47:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:04 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:04 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:04 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:04 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:04 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:04 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:04 DEBUG   opendrift.models.basemodel:1253: Data needed for 6528 elements
13:47:04 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:04 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 20:00:00 (before)
                2023-09-02 21:00:00 (after)
13:47:05 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:05 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:05 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:05 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:05 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 21:00:00)
13:47:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 20:00:00) in space  (linearNDFast)
13:47:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:05 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4287 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4287 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4287 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4287 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4287 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 384 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5472 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5472 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5472 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5472 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5472 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
13:47:05 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:05 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 20:00:00, weight 0.10) and
                      after (2023-09-02 21:00:00, weight 0.90) in time
13:47:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.9574800641408 degrees.
13:47:05 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.092491051250164 and -58.9574800641408 degrees.
13:47:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:05 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:05 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:05 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.719095 (min) 1.10909 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.0666 (min) 0.73019 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000116966 (min) 0.000700123 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     x_wind: -5.08872 (min) 9.10268 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.97375 (min) 7.69432 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3642 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1527:               6528 active elements
13:47:05 DEBUG   opendrift.models.basemodel:1538:               59.09571903433931 <- latitude  -> 59.18956295625036
13:47:05 DEBUG   opendrift.models.basemodel:1543:               10.907519518056846 <- longitude -> 11.042530489542566
13:47:05 DEBUG   opendrift.models.basemodel:1548:               -14.876449813842774   <- z ->   0.0
13:47:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:05 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:05 DEBUG   opendrift.models.physics_methods:1049:    min: 0.022633, mean: 2.446926, max: 7.815078
13:47:05 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.022633, mean: 2.446926, max: 7.815078
13:47:05 DEBUG   opendrift.models.basemodel:813: 948 elements hit coastline, moving back to water
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 147 elements to seafloor.
13:47:05 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:05 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:05 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 6528 elements above 0.100m with wind-sheared ocean current (0.001667 m/s - 0.118758 m/s)
13:47:05 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:05 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:05 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07557749642475128
13:47:05 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:05 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:05 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:05 DEBUG   opendrift.models.oceandrift:582: 655 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 127 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 127 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 127 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 499 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 402 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:47:05 DEBUG   opendrift.models.oceandrift:582: 352 elements penetrated seafloor, lifting up
13:47:05 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:05 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:05 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:05 DEBUG   opendrift.models.basemodel:2945: 6528 active elements (0 deactivated)
13:47:05 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3472, already seeded 6528
13:47:05 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 6562 elements
13:47:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:05 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:05 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:05 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:05 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:05 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4103 (max)
13:47:05 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1527:               6562 active elements
13:47:05 DEBUG   opendrift.models.basemodel:1538:               59.09474726963285 <- latitude  -> 59.18880414763654
13:47:05 DEBUG   opendrift.models.basemodel:1543:               10.908367340380224 <- longitude -> 11.041079218497092
13:47:05 DEBUG   opendrift.models.basemodel:1548:               -15.037416687011719   <- z ->   0.0
13:47:05 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:836: Lifting 576 elements to seafloor.
13:47:05 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:05 INFO    opendrift.models.basemodel:2882: 2023-09-02 21:03:54.338376 - step 189 of 216 - 6562 active elements (0 deactivated)
13:47:05 DEBUG   opendrift.models.basemodel:2888: 3438 elements scheduled.
13:47:05 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 6562 elements
13:47:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:05 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:05 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:05 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:05 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:05 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:05 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:05 DEBUG   opendrift.models.basemodel:1253: Data needed for 6562 elements
13:47:05 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:05 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:06 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:06 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:06 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:06 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-09-02 22:00:00)
13:47:06 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:06 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4288 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4288 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4288 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4288 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4288 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 94 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5510 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2525 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5510 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2525 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5510 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2525 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5510 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2525 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5510 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2525 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4145 elements, expanding data 1
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
13:47:06 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:06 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.93) and
                      after (2023-09-02 22:00:00, weight 0.07) in time
13:47:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09164322994461 and -58.958931334479324 degrees.
13:47:06 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09164322994461 and -58.958931334479324 degrees.
13:47:06 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:06 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:06 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:06 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:06 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:06 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:06 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.700343 (min) 1.3147 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.996795 (min) 0.690035 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000105952 (min) 0.000713054 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     x_wind: -6.23733 (min) 7.80334 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.50492 (min) 7.66543 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4103 (max)
13:47:06 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:06 DEBUG   opendrift.models.basemodel:1527:               6562 active elements
13:47:06 DEBUG   opendrift.models.basemodel:1538:               59.09474726963285 <- latitude  -> 59.18880414763654
13:47:06 DEBUG   opendrift.models.basemodel:1543:               10.908367340380224 <- longitude -> 11.041079218497092
13:47:06 DEBUG   opendrift.models.basemodel:1548:               -14.974713325500488   <- z ->   0.0
13:47:06 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:06 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:06 DEBUG   opendrift.models.physics_methods:1049:    min: 0.027189, mean: 2.302897, max: 7.280901
13:47:06 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.027189, mean: 2.302897, max: 7.280901
13:47:06 DEBUG   opendrift.models.basemodel:813: 960 elements hit coastline, moving back to water
13:47:06 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:47:06 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:06 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:06 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 6562 elements above 0.100m with wind-sheared ocean current (0.011692 m/s - 0.125881 m/s)
13:47:06 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:06 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:06 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06559935955198287
13:47:06 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:06 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:06 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:06 DEBUG   opendrift.models.oceandrift:582: 653 elements penetrated seafloor, lifting up
13:47:06 DEBUG   opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
13:47:06 DEBUG   opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
13:47:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
13:47:06 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:47:06 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:06 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:06 DEBUG   opendrift.models.oceandrift:582: 470 elements penetrated seafloor, lifting up
13:47:06 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:06 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:06 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 436 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 379 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 61 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 347 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 324 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:07 DEBUG   opendrift.models.basemodel:2945: 6562 active elements (0 deactivated)
13:47:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3438, already seeded 6562
13:47:07 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 6597 elements
13:47:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:07 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.408 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1527:               6597 active elements
13:47:07 DEBUG   opendrift.models.basemodel:1538:               59.093988494684915 <- latitude  -> 59.18987758824945
13:47:07 DEBUG   opendrift.models.basemodel:1543:               10.908379526812347 <- longitude -> 11.041175883714507
13:47:07 DEBUG   opendrift.models.basemodel:1548:               -15.16848373413086   <- z ->   0.0
13:47:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 528 elements to seafloor.
13:47:07 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:07 INFO    opendrift.models.basemodel:2882: 2023-09-02 21:13:54.338376 - step 190 of 216 - 6597 active elements (0 deactivated)
13:47:07 DEBUG   opendrift.models.basemodel:2888: 3403 elements scheduled.
13:47:07 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 6597 elements
13:47:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:07 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:07 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:07 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1253: Data needed for 6597 elements
13:47:07 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:07 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:07 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:07 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:07 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:07 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 22:00:00)
13:47:07 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:07 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4244 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4244 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4244 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4244 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4244 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4244 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 389 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 93 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5548 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5548 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5548 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5548 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5548 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5548 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2476 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4104 elements, expanding data 1
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:07 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
13:47:07 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.77) and
                      after (2023-09-02 22:00:00, weight 0.23) in time
13:47:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.091631037266026 and -58.958834665806954 degrees.
13:47:07 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.091631037266026 and -58.958834665806954 degrees.
13:47:07 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:07 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:07 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:07 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:07 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:07 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.746299 (min) 1.2515 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.860966 (min) 0.726372 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.93793e-05 (min) 0.000616192 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.81259 (min) 7.30795 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.21826 (min) 7.34416 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.408 (max)
13:47:07 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1527:               6597 active elements
13:47:07 DEBUG   opendrift.models.basemodel:1538:               59.093988494684915 <- latitude  -> 59.18987758824945
13:47:07 DEBUG   opendrift.models.basemodel:1543:               10.908379526812347 <- longitude -> 11.041175883714507
13:47:07 DEBUG   opendrift.models.basemodel:1548:               -15.16848373413086   <- z ->   0.0
13:47:07 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:07 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:07 DEBUG   opendrift.models.physics_methods:1049:    min: 0.031395, mean: 2.213510, max: 7.085304
13:47:07 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.031395, mean: 2.213510, max: 7.085304
13:47:07 DEBUG   opendrift.models.basemodel:813: 983 elements hit coastline, moving back to water
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
13:47:07 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:07 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:07 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6597 elements above 0.100m with wind-sheared ocean current (0.003018 m/s - 0.102306 m/s)
13:47:07 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:07 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:07 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06212235902054786
13:47:07 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:07 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:07 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:07 DEBUG   opendrift.models.oceandrift:582: 656 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 414 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 392 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 362 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 367 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:47:07 DEBUG   opendrift.models.oceandrift:582: 356 elements penetrated seafloor, lifting up
13:47:07 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:07 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:07 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:07 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:07 DEBUG   opendrift.models.basemodel:2945: 6597 active elements (0 deactivated)
13:47:07 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3403, already seeded 6597
13:47:07 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:07 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:07 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:07 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 6632 elements
13:47:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:08 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4465 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1527:               6632 active elements
13:47:08 DEBUG   opendrift.models.basemodel:1538:               59.093747841141806 <- latitude  -> 59.18983506883376
13:47:08 DEBUG   opendrift.models.basemodel:1543:               10.905639970934562 <- longitude -> 11.040254476801616
13:47:08 DEBUG   opendrift.models.basemodel:1548:               -15.286146392822266   <- z ->   0.0
13:47:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:836: Lifting 617 elements to seafloor.
13:47:08 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:08 INFO    opendrift.models.basemodel:2882: 2023-09-02 21:23:54.338376 - step 191 of 216 - 6632 active elements (0 deactivated)
13:47:08 DEBUG   opendrift.models.basemodel:2888: 3368 elements scheduled.
13:47:08 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 6632 elements
13:47:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:08 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:08 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:08 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:08 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:08 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1253: Data needed for 6632 elements
13:47:08 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:08 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:08 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:08 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:08 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:08 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 22:00:00)
13:47:08 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:08 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4270 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4270 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4270 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4270 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4270 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4270 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5573 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5573 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5573 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5573 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5573 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5573 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4135 elements, expanding data 1
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:08 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:08 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.60) and
                      after (2023-09-02 22:00:00, weight 0.40) in time
13:47:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.094370595851316 and -58.959756079702345 degrees.
13:47:08 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.094370595851316 and -58.959756079702345 degrees.
13:47:08 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:08 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:08 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:08 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:08 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:08 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.803238 (min) 1.08354 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01093 (min) 0.760817 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.24767e-05 (min) 0.000721497 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.05158 (min) 7.78595 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.01913 (min) 8.10784 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4465 (max)
13:47:08 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:08 DEBUG   opendrift.models.basemodel:1527:               6632 active elements
13:47:08 DEBUG   opendrift.models.basemodel:1538:               59.093747841141806 <- latitude  -> 59.18983506883376
13:47:08 DEBUG   opendrift.models.basemodel:1543:               10.905639970934562 <- longitude -> 11.040254476801616
13:47:08 DEBUG   opendrift.models.basemodel:1548:               -15.286146392822266   <- z ->   0.0
13:47:08 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:08 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:08 DEBUG   opendrift.models.physics_methods:1049:    min: 0.012565, mean: 2.143621, max: 7.123469
13:47:08 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.012565, mean: 2.143621, max: 7.123469
13:47:08 DEBUG   opendrift.models.basemodel:813: 930 elements hit coastline, moving back to water
13:47:08 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:08 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:08 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:08 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6632 elements above 0.100m with wind-sheared ocean current (0.005212 m/s - 0.122751 m/s)
13:47:08 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:08 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:09 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0627933470431137
13:47:09 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:09 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:09 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:09 DEBUG   opendrift.models.oceandrift:582: 665 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 113 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 113 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 113 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 115 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 115 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 115 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 365 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 380 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 336 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 347 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:09 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:09 DEBUG   opendrift.models.basemodel:2945: 6632 active elements (0 deactivated)
13:47:09 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3368, already seeded 6632
13:47:09 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 6667 elements
13:47:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:09 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4304 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1527:               6667 active elements
13:47:09 DEBUG   opendrift.models.basemodel:1538:               59.092901471894336 <- latitude  -> 59.191120668827004
13:47:09 DEBUG   opendrift.models.basemodel:1543:               10.90311353212258 <- longitude -> 11.042973986461538
13:47:09 DEBUG   opendrift.models.basemodel:1548:               -15.066915512084961   <- z ->   0.0
13:47:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 586 elements to seafloor.
13:47:09 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:09 INFO    opendrift.models.basemodel:2882: 2023-09-02 21:33:54.338376 - step 192 of 216 - 6667 active elements (0 deactivated)
13:47:09 DEBUG   opendrift.models.basemodel:2888: 3333 elements scheduled.
13:47:09 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 6667 elements
13:47:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:09 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 6667 elements
13:47:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:09 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:09 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-09-02 22:00:00)
13:47:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:09 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4322 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 394 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4322 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 394 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4322 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 394 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4322 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 394 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4322 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 394 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4322 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 394 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5581 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5581 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5581 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5581 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5581 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5581 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2485 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4169 elements, expanding data 1
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
13:47:09 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:09 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.43) and
                      after (2023-09-02 22:00:00, weight 0.57) in time
13:47:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09689704267198 and -58.95703656391379 degrees.
13:47:09 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09689704267198 and -58.95703656391379 degrees.
13:47:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:09 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:09 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:09 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.832938 (min) 1.07183 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.973339 (min) 0.753106 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.39081e-05 (min) 0.000627518 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.02285 (min) 6.39113 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.66309 (min) 7.47378 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4304 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1527:               6667 active elements
13:47:09 DEBUG   opendrift.models.basemodel:1538:               59.092901471894336 <- latitude  -> 59.191120668827004
13:47:09 DEBUG   opendrift.models.basemodel:1543:               10.90311353212258 <- longitude -> 11.042973986461538
13:47:09 DEBUG   opendrift.models.basemodel:1548:               -15.041711807250977   <- z ->   0.0
13:47:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:09 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:09 DEBUG   opendrift.models.physics_methods:1049:    min: 0.018932, mean: 2.191069, max: 7.199814
13:47:09 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.018932, mean: 2.191069, max: 7.199814
13:47:09 DEBUG   opendrift.models.basemodel:813: 979 elements hit coastline, moving back to water
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
13:47:09 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:09 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:09 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6667 elements above 0.100m with wind-sheared ocean current (0.005659 m/s - 0.103214 m/s)
13:47:09 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:09 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:09 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.06414643714530945
13:47:09 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:09 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:09 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:09 DEBUG   opendrift.models.oceandrift:582: 720 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 127 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 127 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 127 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 546 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 119 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 119 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 119 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 408 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 65 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 372 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:09 DEBUG   opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
13:47:09 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:09 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:09 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:09 DEBUG   opendrift.models.basemodel:2945: 6667 active elements (0 deactivated)
13:47:09 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3333, already seeded 6667
13:47:09 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 6701 elements
13:47:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:09 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:09 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:09 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:09 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:09 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4804 (max)
13:47:09 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1527:               6701 active elements
13:47:09 DEBUG   opendrift.models.basemodel:1538:               59.093187929512496 <- latitude  -> 59.19015037683771
13:47:09 DEBUG   opendrift.models.basemodel:1543:               10.902460890953924 <- longitude -> 11.04052267247209
13:47:09 DEBUG   opendrift.models.basemodel:1548:               -15.042440414428711   <- z ->   0.0
13:47:09 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:836: Lifting 605 elements to seafloor.
13:47:09 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:09 INFO    opendrift.models.basemodel:2882: 2023-09-02 21:43:54.338376 - step 193 of 216 - 6701 active elements (0 deactivated)
13:47:09 DEBUG   opendrift.models.basemodel:2888: 3299 elements scheduled.
13:47:09 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 6701 elements
13:47:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:09 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:09 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:09 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:09 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:09 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:09 DEBUG   opendrift.models.basemodel:1253: Data needed for 6701 elements
13:47:09 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:09 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:10 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:10 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:10 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:10 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-02 22:00:00)
13:47:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:10 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4344 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4344 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4344 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4344 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4344 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4344 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5636 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5636 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5636 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5636 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5636 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5636 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2506 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4194 elements, expanding data 1
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
13:47:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:10 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.27) and
                      after (2023-09-02 22:00:00, weight 0.73) in time
13:47:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09754966988035 and -58.95948787955278 degrees.
13:47:10 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.09754966988035 and -58.95948787955278 degrees.
13:47:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:10 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:10 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:10 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.817735 (min) 1.03605 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.894858 (min) 1.04521 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.57202e-05 (min) 0.000690873 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     x_wind: -7.91427 (min) 6.69198 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.46494 (min) 8.47831 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4804 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1527:               6701 active elements
13:47:10 DEBUG   opendrift.models.basemodel:1538:               59.093187929512496 <- latitude  -> 59.19015037683771
13:47:10 DEBUG   opendrift.models.basemodel:1543:               10.902460890953924 <- longitude -> 11.04052267247209
13:47:10 DEBUG   opendrift.models.basemodel:1548:               -15.041711807250977   <- z ->   0.0
13:47:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:10 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:10 DEBUG   opendrift.models.physics_methods:1049:    min: 0.037096, mean: 2.263535, max: 7.571369
13:47:10 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.037096, mean: 2.263535, max: 7.571369
13:47:10 DEBUG   opendrift.models.basemodel:813: 995 elements hit coastline, moving back to water
13:47:10 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:10 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:10 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:10 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 6701 elements above 0.100m with wind-sheared ocean current (0.008802 m/s - 0.105231 m/s)
13:47:10 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:10 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:10 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07093755415423393
13:47:10 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:10 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:10 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:10 DEBUG   opendrift.models.oceandrift:582: 720 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 553 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 526 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 103 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 103 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 458 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 418 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 364 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 363 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 67 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
13:47:10 DEBUG   opendrift.models.oceandrift:582: 369 elements penetrated seafloor, lifting up
13:47:10 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:47:10 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:47:10 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:10 DEBUG   opendrift.models.basemodel:2945: 6701 active elements (0 deactivated)
13:47:10 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3299, already seeded 6701
13:47:10 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 6736 elements
13:47:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:10 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:10 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:10 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:10 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:10 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4879 (max)
13:47:10 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1527:               6736 active elements
13:47:10 DEBUG   opendrift.models.basemodel:1538:               59.0931879295125 <- latitude  -> 59.18951248366136
13:47:10 DEBUG   opendrift.models.basemodel:1543:               10.899416662032406 <- longitude -> 11.042368346688333
13:47:10 DEBUG   opendrift.models.basemodel:1548:               -15.031711807250977   <- z ->   0.0
13:47:10 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:836: Lifting 600 elements to seafloor.
13:47:10 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:10 INFO    opendrift.models.basemodel:2882: 2023-09-02 21:53:54.338376 - step 194 of 216 - 6736 active elements (0 deactivated)
13:47:10 DEBUG   opendrift.models.basemodel:2888: 3264 elements scheduled.
13:47:10 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 6736 elements
13:47:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:10 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:10 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:10 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:10 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:10 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:10 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:10 DEBUG   opendrift.models.basemodel:1253: Data needed for 6736 elements
13:47:10 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:10 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 21:00:00 (before)
                2023-09-02 22:00:00 (after)
13:47:11 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:11 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:11 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:11 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:11 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-02 22:00:00)
13:47:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 21:00:00) in space  (linearNDFast)
13:47:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:11 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 401 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 401 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 401 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 401 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 401 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 401 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 98 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5656 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5656 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5656 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5656 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5656 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5656 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2484 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4183 elements, expanding data 1
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 104 elements, expanding data 2
13:47:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:11 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 21:00:00, weight 0.10) and
                      after (2023-09-02 22:00:00, weight 0.90) in time
13:47:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1005939113484 and -58.957642210486725 degrees.
13:47:11 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1005939113484 and -58.957642210486725 degrees.
13:47:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:11 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:11 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:11 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.767281 (min) 1.15895 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.990034 (min) 0.735965 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.00011364 (min) 0.000726423 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.62159 (min) 5.08014 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.49304 (min) 8.39019 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4879 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1527:               6736 active elements
13:47:11 DEBUG   opendrift.models.basemodel:1538:               59.0931879295125 <- latitude  -> 59.18951248366136
13:47:11 DEBUG   opendrift.models.basemodel:1543:               10.899416662032406 <- longitude -> 11.042368346688333
13:47:11 DEBUG   opendrift.models.basemodel:1548:               -15.031711807250977   <- z ->   0.0
13:47:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:11 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:11 DEBUG   opendrift.models.physics_methods:1049:    min: 0.028723, mean: 2.419026, max: 8.284144
13:47:11 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.028723, mean: 2.419026, max: 8.284144
13:47:11 DEBUG   opendrift.models.basemodel:813: 988 elements hit coastline, moving back to water
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 186 elements to seafloor.
13:47:11 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:11 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:11 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6736 elements above 0.100m with wind-sheared ocean current (0.008346 m/s - 0.110410 m/s)
13:47:11 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:11 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:11 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08492165534980774
13:47:11 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:11 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:11 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:11 DEBUG   opendrift.models.oceandrift:582: 761 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 561 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 108 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 108 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 522 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 435 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 392 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 357 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:11 DEBUG   opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
13:47:11 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:47:11 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:47:11 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:11 DEBUG   opendrift.models.basemodel:2945: 6736 active elements (0 deactivated)
13:47:11 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3264, already seeded 6736
13:47:11 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 6771 elements
13:47:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:11 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:11 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:11 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:11 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:11 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5007 (max)
13:47:11 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1527:               6771 active elements
13:47:11 DEBUG   opendrift.models.basemodel:1538:               59.092384750200154 <- latitude  -> 59.190206626405825
13:47:11 DEBUG   opendrift.models.basemodel:1543:               10.898811765535374 <- longitude -> 11.04591869980504
13:47:11 DEBUG   opendrift.models.basemodel:1548:               -15.012093772888184   <- z ->   0.0
13:47:11 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:836: Lifting 559 elements to seafloor.
13:47:11 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:11 INFO    opendrift.models.basemodel:2882: 2023-09-02 22:03:54.338376 - step 195 of 216 - 6771 active elements (0 deactivated)
13:47:11 DEBUG   opendrift.models.basemodel:2888: 3229 elements scheduled.
13:47:11 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 6771 elements
13:47:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:11 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:11 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:11 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:11 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:11 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:11 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:11 DEBUG   opendrift.models.basemodel:1253: Data needed for 6771 elements
13:47:11 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:11 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:12 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:12 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:12 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:12 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-02 23:00:00)
13:47:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:12 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4318 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4318 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4318 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4318 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4318 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4318 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5709 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2468 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5709 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2468 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5709 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2468 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5709 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2468 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5709 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2468 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5709 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2468 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4176 elements, expanding data 1
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 2
13:47:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:12 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.93) and
                      after (2023-09-02 23:00:00, weight 0.07) in time
13:47:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10119880561467 and -58.954091854582785 degrees.
13:47:12 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10119880561467 and -58.954091854582785 degrees.
13:47:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:12 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:12 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:12 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.786349 (min) 1.29685 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11599 (min) 0.776079 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000107544 (min) 0.000759962 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.63304 (min) 6.62886 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.13227 (min) 8.48063 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5007 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1527:               6771 active elements
13:47:12 DEBUG   opendrift.models.basemodel:1538:               59.092384750200154 <- latitude  -> 59.190206626405825
13:47:12 DEBUG   opendrift.models.basemodel:1543:               10.898811765535374 <- longitude -> 11.04591869980504
13:47:12 DEBUG   opendrift.models.basemodel:1548:               -15.012093772888184   <- z ->   0.0
13:47:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:12 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:12 DEBUG   opendrift.models.physics_methods:1049:    min: 0.032126, mean: 2.527128, max: 7.802402
13:47:12 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.032126, mean: 2.527128, max: 7.802402
13:47:12 DEBUG   opendrift.models.basemodel:813: 968 elements hit coastline, moving back to water
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:47:12 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:12 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:12 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 6771 elements above 0.100m with wind-sheared ocean current (0.001861 m/s - 0.137959 m/s)
13:47:12 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:12 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:12 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07533251047428131
13:47:12 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:12 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:12 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:12 DEBUG   opendrift.models.oceandrift:582: 783 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 629 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 484 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 432 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 415 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:47:12 DEBUG   opendrift.models.oceandrift:582: 393 elements penetrated seafloor, lifting up
13:47:12 DEBUG   opendrift.models.oceandrift:600: 60 elements reached seafloor, set to bottom
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
13:47:12 DEBUG   opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
13:47:12 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:12 DEBUG   opendrift.models.basemodel:2945: 6771 active elements (0 deactivated)
13:47:12 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3229, already seeded 6771
13:47:12 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:12 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:12 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:12 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1253: Data needed for 6805 elements
13:47:12 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:12 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:12 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:12 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:12 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:12 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:12 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:12 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4905 (max)
13:47:12 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:1527:               6805 active elements
13:47:12 DEBUG   opendrift.models.basemodel:1538:               59.09255792564872 <- latitude  -> 59.18887082846102
13:47:12 DEBUG   opendrift.models.basemodel:1543:               10.896737986161718 <- longitude -> 11.041804174497306
13:47:12 DEBUG   opendrift.models.basemodel:1548:               -14.894787063598633   <- z ->   0.0
13:47:12 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:12 DEBUG   opendrift.models.basemodel:836: Lifting 611 elements to seafloor.
13:47:12 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:12 INFO    opendrift.models.basemodel:2882: 2023-09-02 22:13:54.338376 - step 196 of 216 - 6805 active elements (0 deactivated)
13:47:12 DEBUG   opendrift.models.basemodel:2888: 3195 elements scheduled.
13:47:12 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 6805 elements
13:47:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:13 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 6805 elements
13:47:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:13 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:13 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-02 23:00:00)
13:47:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:13 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4363 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4363 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4363 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4363 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4363 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5748 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2463 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5748 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2463 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5748 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2463 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5748 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2463 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5748 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2463 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4219 elements, expanding data 1
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
13:47:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:13 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.77) and
                      after (2023-09-02 23:00:00, weight 0.23) in time
13:47:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10327258474984 and -58.95820637572061 degrees.
13:47:13 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10327258474984 and -58.95820637572061 degrees.
13:47:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:13 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:13 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:13 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.778326 (min) 1.29478 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.09503 (min) 0.794148 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000101262 (min) 0.000657621 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.9159 (min) 5.7012 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.20485 (min) 7.24008 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4905 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1527:               6805 active elements
13:47:13 DEBUG   opendrift.models.basemodel:1538:               59.09255792564872 <- latitude  -> 59.18887082846102
13:47:13 DEBUG   opendrift.models.basemodel:1543:               10.896737986161718 <- longitude -> 11.041804174497306
13:47:13 DEBUG   opendrift.models.basemodel:1548:               -14.894787063598633   <- z ->   0.0
13:47:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:13 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:13 DEBUG   opendrift.models.physics_methods:1049:    min: 0.033018, mean: 2.536407, max: 7.932692
13:47:13 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.033018, mean: 2.536407, max: 7.932692
13:47:13 DEBUG   opendrift.models.basemodel:813: 953 elements hit coastline, moving back to water
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 121 elements to seafloor.
13:47:13 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:13 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:13 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 6805 elements above 0.100m with wind-sheared ocean current (0.003630 m/s - 0.139994 m/s)
13:47:13 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:13 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:13 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07786930503376006
13:47:13 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:13 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:13 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:13 DEBUG   opendrift.models.oceandrift:582: 763 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 117 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 117 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 117 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 583 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 513 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 488 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 443 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 444 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:13 DEBUG   opendrift.models.oceandrift:582: 403 elements penetrated seafloor, lifting up
13:47:13 DEBUG   opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
13:47:13 DEBUG   opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
13:47:13 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:13 DEBUG   opendrift.models.basemodel:2945: 6805 active elements (0 deactivated)
13:47:13 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3195, already seeded 6805
13:47:13 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 6840 elements
13:47:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:13 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:13 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:13 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:13 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:13 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5156 (max)
13:47:13 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1527:               6840 active elements
13:47:13 DEBUG   opendrift.models.basemodel:1538:               59.09496020992714 <- latitude  -> 59.18883969058545
13:47:13 DEBUG   opendrift.models.basemodel:1543:               10.894976122792956 <- longitude -> 11.04016844189843
13:47:13 DEBUG   opendrift.models.basemodel:1548:               -14.813553085327149   <- z ->   0.0
13:47:13 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:836: Lifting 610 elements to seafloor.
13:47:13 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:13 INFO    opendrift.models.basemodel:2882: 2023-09-02 22:23:54.338376 - step 197 of 216 - 6840 active elements (0 deactivated)
13:47:13 DEBUG   opendrift.models.basemodel:2888: 3160 elements scheduled.
13:47:13 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 6840 elements
13:47:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:13 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:13 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:13 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:13 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:13 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:13 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:13 DEBUG   opendrift.models.basemodel:1253: Data needed for 6840 elements
13:47:13 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:13 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:14 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:14 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:14 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:14 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:14 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:14 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-02 23:00:00)
13:47:14 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:14 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4382 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4382 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4382 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4382 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4382 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5772 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2496 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5772 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2496 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5772 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2496 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5772 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2496 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5772 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2496 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4246 elements, expanding data 1
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
13:47:14 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.60) and
                      after (2023-09-02 23:00:00, weight 0.40) in time
13:47:14 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10503444883612 and -58.95984211783966 degrees.
13:47:14 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10503444883612 and -58.95984211783966 degrees.
13:47:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:14 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:14 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:14 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:14 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:14 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.793917 (min) 1.34751 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.09578 (min) 0.744846 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000112491 (min) 0.000639983 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.9301 (min) 5.24272 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.78151 (min) 7.23845 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5156 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1527:               6840 active elements
13:47:14 DEBUG   opendrift.models.basemodel:1538:               59.09496020992714 <- latitude  -> 59.18883969058545
13:47:14 DEBUG   opendrift.models.basemodel:1543:               10.894976122792956 <- longitude -> 11.04016844189843
13:47:14 DEBUG   opendrift.models.basemodel:1548:               -14.813553085327149   <- z ->   0.0
13:47:14 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:14 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:14 DEBUG   opendrift.models.physics_methods:1049:    min: 0.028079, mean: 2.497181, max: 7.743367
13:47:14 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.028079, mean: 2.497181, max: 7.743367
13:47:14 DEBUG   opendrift.models.basemodel:813: 935 elements hit coastline, moving back to water
13:47:14 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:14 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:14 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:14 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6840 elements above 0.100m with wind-sheared ocean current (0.007807 m/s - 0.175744 m/s)
13:47:14 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:14 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:14 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07419692573507308
13:47:14 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:14 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:14 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:14 DEBUG   opendrift.models.oceandrift:582: 753 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 106 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 120 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 120 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 120 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 531 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 494 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 477 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 411 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 424 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:47:14 DEBUG   opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
13:47:14 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:47:14 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:47:14 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:14 DEBUG   opendrift.models.basemodel:2945: 6840 active elements (0 deactivated)
13:47:14 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3160, already seeded 6840
13:47:14 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 6875 elements
13:47:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:14 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:14 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:14 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:14 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:14 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:14 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5006 (max)
13:47:14 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1527:               6875 active elements
13:47:14 DEBUG   opendrift.models.basemodel:1538:               59.094717559250924 <- latitude  -> 59.191074792869614
13:47:14 DEBUG   opendrift.models.basemodel:1543:               10.895018202016736 <- longitude -> 11.040943481682875
13:47:14 DEBUG   opendrift.models.basemodel:1548:               -15.03753303527832   <- z ->   0.0
13:47:14 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:836: Lifting 577 elements to seafloor.
13:47:14 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:14 INFO    opendrift.models.basemodel:2882: 2023-09-02 22:33:54.338376 - step 198 of 216 - 6875 active elements (0 deactivated)
13:47:14 DEBUG   opendrift.models.basemodel:2888: 3125 elements scheduled.
13:47:14 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 6875 elements
13:47:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:14 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:14 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:14 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:14 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:14 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:14 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:14 DEBUG   opendrift.models.basemodel:1253: Data needed for 6875 elements
13:47:14 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:14 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:15 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:15 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:15 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:15 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-02 23:00:00)
13:47:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:15 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4420 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4420 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4420 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4420 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4420 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 409 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5805 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5805 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5805 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5805 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5805 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2497 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4284 elements, expanding data 1
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
13:47:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
13:47:15 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.43) and
                      after (2023-09-02 23:00:00, weight 0.57) in time
13:47:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10499236107774 and -58.95906706354125 degrees.
13:47:15 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10499236107774 and -58.95906706354125 degrees.
13:47:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:15 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:15 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:15 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.726365 (min) 1.32976 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.949934 (min) 0.895902 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000214567 (min) 0.000727877 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.46575 (min) 5.32365 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.16308 (min) 7.27761 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5006 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1527:               6875 active elements
13:47:15 DEBUG   opendrift.models.basemodel:1538:               59.094717559250924 <- latitude  -> 59.191074792869614
13:47:15 DEBUG   opendrift.models.basemodel:1543:               10.895018202016736 <- longitude -> 11.040943481682875
13:47:15 DEBUG   opendrift.models.basemodel:1548:               -14.959259033203125   <- z ->   0.0
13:47:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:15 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:15 DEBUG   opendrift.models.physics_methods:1049:    min: 0.003212, mean: 2.451971, max: 8.118300
13:47:15 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.003212, mean: 2.451971, max: 8.118300
13:47:15 DEBUG   opendrift.models.basemodel:813: 964 elements hit coastline, moving back to water
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
13:47:15 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:15 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:15 DEBUG   opendrift.models.physics_methods:835: Advecting 36 of 6875 elements above 0.100m with wind-sheared ocean current (0.010184 m/s - 0.132808 m/s)
13:47:15 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:15 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:15 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08155570269830703
13:47:15 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:15 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:15 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:15 DEBUG   opendrift.models.oceandrift:582: 756 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 103 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 103 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 599 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 127 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 127 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 127 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 544 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 491 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 489 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 455 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 420 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:15 DEBUG   opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
13:47:15 DEBUG   opendrift.models.oceandrift:600: 52 elements reached seafloor, set to bottom
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
13:47:15 DEBUG   opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
13:47:15 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:15 DEBUG   opendrift.models.basemodel:2945: 6875 active elements (0 deactivated)
13:47:15 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3125, already seeded 6875
13:47:15 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 6910 elements
13:47:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:15 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:15 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:15 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:15 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:15 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4891 (max)
13:47:15 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1527:               6910 active elements
13:47:15 DEBUG   opendrift.models.basemodel:1538:               59.09540634221522 <- latitude  -> 59.190499451908735
13:47:15 DEBUG   opendrift.models.basemodel:1543:               10.893130277609641 <- longitude -> 11.04339602406475
13:47:15 DEBUG   opendrift.models.basemodel:1548:               -14.959259033203125   <- z ->   0.0
13:47:15 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:836: Lifting 610 elements to seafloor.
13:47:15 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:15 INFO    opendrift.models.basemodel:2882: 2023-09-02 22:43:54.338376 - step 199 of 216 - 6910 active elements (0 deactivated)
13:47:15 DEBUG   opendrift.models.basemodel:2888: 3090 elements scheduled.
13:47:15 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 6910 elements
13:47:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:15 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:15 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:15 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:15 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:15 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:15 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:15 DEBUG   opendrift.models.basemodel:1253: Data needed for 6910 elements
13:47:15 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:15 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:16 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:16 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:16 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:16 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:16 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-02 23:00:00)
13:47:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:16 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4436 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 419 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4436 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 419 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4436 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 419 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4436 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 419 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4436 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 419 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5845 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5845 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5845 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5845 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5845 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4311 elements, expanding data 1
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
13:47:16 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:16 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.27) and
                      after (2023-09-02 23:00:00, weight 0.73) in time
13:47:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10688029068643 and -58.95661451813986 degrees.
13:47:16 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10688029068643 and -58.95661451813986 degrees.
13:47:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:16 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:16 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:16 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.738913 (min) 1.34234 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.1096 (min) 0.683265 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.39019e-05 (min) 0.000600836 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     x_wind: -10.9824 (min) 4.70928 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     y_wind: -6.92771 (min) 7.89605 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4891 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1527:               6910 active elements
13:47:16 DEBUG   opendrift.models.basemodel:1538:               59.09540634221522 <- latitude  -> 59.190499451908735
13:47:16 DEBUG   opendrift.models.basemodel:1543:               10.893130277609641 <- longitude -> 11.04339602406475
13:47:16 DEBUG   opendrift.models.basemodel:1548:               -14.959259033203125   <- z ->   0.0
13:47:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:16 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:16 DEBUG   opendrift.models.physics_methods:1049:    min: 0.039836, mean: 2.463697, max: 9.504212
13:47:16 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.039836, mean: 2.463697, max: 9.504212
13:47:16 DEBUG   opendrift.models.basemodel:813: 945 elements hit coastline, moving back to water
13:47:16 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:16 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:16 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:16 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6910 elements above 0.100m with wind-sheared ocean current (0.017762 m/s - 0.110136 m/s)
13:47:16 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:16 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:16 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11177647463281631
13:47:16 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:16 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:16 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:16 DEBUG   opendrift.models.oceandrift:582: 777 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 574 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 114 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 114 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 114 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 557 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 518 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 433 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 391 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 66 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
13:47:16 DEBUG   opendrift.models.oceandrift:582: 401 elements penetrated seafloor, lifting up
13:47:16 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:16 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:16 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:16 DEBUG   opendrift.models.basemodel:2945: 6910 active elements (0 deactivated)
13:47:16 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3090, already seeded 6910
13:47:16 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 6944 elements
13:47:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:16 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:16 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:16 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:16 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:16 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:16 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:16 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5177 (max)
13:47:16 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1527:               6944 active elements
13:47:16 DEBUG   opendrift.models.basemodel:1538:               59.09435514749515 <- latitude  -> 59.189597949447325
13:47:16 DEBUG   opendrift.models.basemodel:1543:               10.892876108353025 <- longitude -> 11.042134333642997
13:47:16 DEBUG   opendrift.models.basemodel:1548:               -15.210569610595703   <- z ->   0.0
13:47:16 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:836: Lifting 605 elements to seafloor.
13:47:16 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:16 INFO    opendrift.models.basemodel:2882: 2023-09-02 22:53:54.338376 - step 200 of 216 - 6944 active elements (0 deactivated)
13:47:16 DEBUG   opendrift.models.basemodel:2888: 3056 elements scheduled.
13:47:16 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:16 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:16 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:16 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:16 DEBUG   opendrift.models.basemodel:1253: Data needed for 6944 elements
13:47:16 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:17 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 6944 elements
13:47:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 22:00:00 (before)
                2023-09-02 23:00:00 (after)
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:17 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:17 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x26x6) for time after (2023-09-02 23:00:00)
13:47:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 22:00:00) in space  (linearNDFast)
13:47:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:17 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4458 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 422 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4458 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 422 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4458 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 422 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4458 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 422 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4458 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 422 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4458 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 422 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5862 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5862 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5862 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5862 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5862 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5862 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2508 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4328 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:17 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 22:00:00, weight 0.10) and
                      after (2023-09-02 23:00:00, weight 0.90) in time
13:47:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10713447538567 and -58.957876211144594 degrees.
13:47:17 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10713447538567 and -58.957876211144594 degrees.
13:47:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:17 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:17 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:17 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.806827 (min) 1.15817 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.954146 (min) 0.847776 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000102453 (min) 0.000550992 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.34621 (min) 5.48143 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.63646 (min) 7.47283 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5177 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1527:               6944 active elements
13:47:17 DEBUG   opendrift.models.basemodel:1538:               59.09435514749515 <- latitude  -> 59.189597949447325
13:47:17 DEBUG   opendrift.models.basemodel:1543:               10.892876108353025 <- longitude -> 11.042134333642997
13:47:17 DEBUG   opendrift.models.basemodel:1548:               -15.084794998168945   <- z ->   0.0
13:47:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:17 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:17 DEBUG   opendrift.models.physics_methods:1049:    min: 0.027157, mean: 2.451706, max: 7.988016
13:47:17 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.027157, mean: 2.451706, max: 7.988016
13:47:17 DEBUG   opendrift.models.basemodel:813: 936 elements hit coastline, moving back to water
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 181 elements to seafloor.
13:47:17 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:17 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:17 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 6944 elements above 0.100m with wind-sheared ocean current (0.002955 m/s - 0.128941 m/s)
13:47:17 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:17 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:17 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07895918884094238
13:47:17 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:17 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:17 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:17 DEBUG   opendrift.models.oceandrift:582: 754 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 120 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 120 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 120 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 558 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 103 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 103 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 530 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 480 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 467 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 439 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 427 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 443 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
13:47:17 DEBUG   opendrift.models.oceandrift:582: 398 elements penetrated seafloor, lifting up
13:47:17 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:17 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:17 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:17 DEBUG   opendrift.models.basemodel:2945: 6944 active elements (0 deactivated)
13:47:17 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3056, already seeded 6944
13:47:17 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 6979 elements
13:47:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:17 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:47:17 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 1
13:47:17 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:17 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:17 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:17 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5415 (max)
13:47:17 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1527:               6979 active elements
13:47:17 DEBUG   opendrift.models.basemodel:1538:               59.094481328171575 <- latitude  -> 59.18973082806329
13:47:17 DEBUG   opendrift.models.basemodel:1543:               10.89376352840468 <- longitude -> 11.042157308518973
13:47:17 DEBUG   opendrift.models.basemodel:1548:               -15.07479404449463   <- z ->   0.0
13:47:17 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:836: Lifting 647 elements to seafloor.
13:47:17 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:17 INFO    opendrift.models.basemodel:2882: 2023-09-02 23:03:54.338376 - step 201 of 216 - 6979 active elements (0 deactivated)
13:47:17 DEBUG   opendrift.models.basemodel:2888: 3021 elements scheduled.
13:47:17 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 6979 elements
13:47:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:17 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:17 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:17 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:17 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:17 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:17 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:17 DEBUG   opendrift.models.basemodel:1253: Data needed for 6979 elements
13:47:17 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:17 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:18 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:18 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:18 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:18 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-03 00:00:00)
13:47:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:18 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4496 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4496 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4496 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4496 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4496 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4496 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5895 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2523 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5895 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2523 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5895 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2523 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5895 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2523 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5895 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2523 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5895 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2523 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4355 elements, expanding data 1
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 2
13:47:18 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
13:47:18 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.93) and
                      after (2023-09-03 00:00:00, weight 0.07) in time
13:47:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.106247047939895 and -58.95785322216483 degrees.
13:47:18 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.106247047939895 and -58.95785322216483 degrees.
13:47:18 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:18 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:18 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:18 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:18 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:18 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:18 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.854891 (min) 1.26029 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.01576 (min) 0.729484 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000116119 (min) 0.000590533 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.17567 (min) 6.6131 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.30193 (min) 7.59833 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5415 (max)
13:47:18 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:18 DEBUG   opendrift.models.basemodel:1527:               6979 active elements
13:47:18 DEBUG   opendrift.models.basemodel:1538:               59.094481328171575 <- latitude  -> 59.18973082806329
13:47:18 DEBUG   opendrift.models.basemodel:1543:               10.89376352840468 <- longitude -> 11.042157308518973
13:47:18 DEBUG   opendrift.models.basemodel:1548:               -15.07479404449463   <- z ->   0.0
13:47:18 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:18 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:18 DEBUG   opendrift.models.physics_methods:1049:    min: 0.037530, mean: 2.429896, max: 7.909460
13:47:18 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.037530, mean: 2.429896, max: 7.909460
13:47:18 DEBUG   opendrift.models.basemodel:813: 988 elements hit coastline, moving back to water
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
13:47:18 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:18 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:18 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 6979 elements above 0.100m with wind-sheared ocean current (0.004447 m/s - 0.150828 m/s)
13:47:18 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:18 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:18 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07741390235240936
13:47:18 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:18 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:18 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:18 DEBUG   opendrift.models.oceandrift:582: 765 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 146 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 146 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 146 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 578 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 466 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 421 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 420 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 417 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 401 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:18 DEBUG   opendrift.models.oceandrift:582: 381 elements penetrated seafloor, lifting up
13:47:18 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:18 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:18 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:18 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:18 DEBUG   opendrift.models.basemodel:2945: 6979 active elements (0 deactivated)
13:47:18 DEBUG   opendrift.models.basemodel:1658: to be seeded: 3021, already seeded 6979
13:47:18 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:18 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:18 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:18 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:18 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:18 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:18 DEBUG   opendrift.models.basemodel:1253: Data needed for 7014 elements
13:47:18 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:18 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:18 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:19 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5527 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1527:               7014 active elements
13:47:19 DEBUG   opendrift.models.basemodel:1538:               59.09322818459267 <- latitude  -> 59.18926620022404
13:47:19 DEBUG   opendrift.models.basemodel:1543:               10.89113590295514 <- longitude -> 11.045672857155838
13:47:19 DEBUG   opendrift.models.basemodel:1548:               -15.261588325500488   <- z ->   0.0
13:47:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 615 elements to seafloor.
13:47:19 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:19 INFO    opendrift.models.basemodel:2882: 2023-09-02 23:13:54.338376 - step 202 of 216 - 7014 active elements (0 deactivated)
13:47:19 DEBUG   opendrift.models.basemodel:2888: 2986 elements scheduled.
13:47:19 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 7014 elements
13:47:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 7014 elements
13:47:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:19 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:19 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x26x5) for time after (2023-09-03 00:00:00)
13:47:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:19 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4553 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4553 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4553 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4553 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4553 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 433 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5942 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2575 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5942 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2575 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5942 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2575 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5942 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2575 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5942 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2575 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4415 elements, expanding data 1
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 2
13:47:19 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:19 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.77) and
                      after (2023-09-03 00:00:00, weight 0.23) in time
13:47:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10887467421257 and -58.9543376845572 degrees.
13:47:19 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10887467421257 and -58.9543376845572 degrees.
13:47:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:19 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:19 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:19 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.678947 (min) 1.20305 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05496 (min) 0.778615 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000188014 (min) 0.000638258 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.55563 (min) 6.49144 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.29284 (min) 6.9837 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5527 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1527:               7014 active elements
13:47:19 DEBUG   opendrift.models.basemodel:1538:               59.09322818459267 <- latitude  -> 59.18926620022404
13:47:19 DEBUG   opendrift.models.basemodel:1543:               10.89113590295514 <- longitude -> 11.045672857155838
13:47:19 DEBUG   opendrift.models.basemodel:1548:               -14.845985553901338   <- z ->   0.0
13:47:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:19 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:19 DEBUG   opendrift.models.physics_methods:1049:    min: 0.025237, mean: 2.460323, max: 8.313731
13:47:19 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.025237, mean: 2.460323, max: 8.313731
13:47:19 DEBUG   opendrift.models.basemodel:813: 985 elements hit coastline, moving back to water
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
13:47:19 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:19 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:19 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7014 elements above 0.100m with wind-sheared ocean current (0.003559 m/s - 0.142144 m/s)
13:47:19 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:19 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:19 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08552932679231644
13:47:19 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:19 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:19 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:19 DEBUG   opendrift.models.oceandrift:582: 826 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 570 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 118 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 118 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 118 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 540 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 518 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 422 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 426 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 404 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 55 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
13:47:19 DEBUG   opendrift.models.oceandrift:582: 399 elements penetrated seafloor, lifting up
13:47:19 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:19 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:19 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:19 DEBUG   opendrift.models.basemodel:2945: 7014 active elements (0 deactivated)
13:47:19 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2986, already seeded 7014
13:47:19 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 7048 elements
13:47:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:19 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:19 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:19 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:19 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:19 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5073 (max)
13:47:19 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1527:               7048 active elements
13:47:19 DEBUG   opendrift.models.basemodel:1538:               59.09162947370541 <- latitude  -> 59.18955364781766
13:47:19 DEBUG   opendrift.models.basemodel:1543:               10.891135902955133 <- longitude -> 11.04205278787447
13:47:19 DEBUG   opendrift.models.basemodel:1548:               -15.542735328674317   <- z ->   0.0
13:47:19 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:836: Lifting 648 elements to seafloor.
13:47:19 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:19 INFO    opendrift.models.basemodel:2882: 2023-09-02 23:23:54.338376 - step 203 of 216 - 7048 active elements (0 deactivated)
13:47:19 DEBUG   opendrift.models.basemodel:2888: 2952 elements scheduled.
13:47:19 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 7048 elements
13:47:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:19 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:19 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:19 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:19 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:19 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:19 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:19 DEBUG   opendrift.models.basemodel:1253: Data needed for 7048 elements
13:47:19 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:19 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:20 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:20 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:20 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:20 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:20 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-03 00:00:00)
13:47:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:20 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5981 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2571 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5981 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2571 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5981 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2571 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5981 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2571 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5981 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2571 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5981 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2571 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4451 elements, expanding data 1
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
13:47:20 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:20 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.60) and
                      after (2023-09-03 00:00:00, weight 0.40) in time
13:47:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10887467421257 and -58.95795774835393 degrees.
13:47:20 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10887467421257 and -58.95795774835393 degrees.
13:47:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:20 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:20 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:20 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.889161 (min) 1.2702 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03011 (min) 0.788326 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000168251 (min) 0.000647137 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.71498 (min) 6.22806 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.21681 (min) 9.67434 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.5073 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1527:               7048 active elements
13:47:20 DEBUG   opendrift.models.basemodel:1538:               59.09162947370541 <- latitude  -> 59.18955364781766
13:47:20 DEBUG   opendrift.models.basemodel:1543:               10.891135902955133 <- longitude -> 11.04205278787447
13:47:20 DEBUG   opendrift.models.basemodel:1548:               -15.507292747497559   <- z ->   0.0
13:47:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:20 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:20 DEBUG   opendrift.models.physics_methods:1049:    min: 0.024926, mean: 2.471043, max: 8.389832
13:47:20 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.024926, mean: 2.471043, max: 8.389832
13:47:20 DEBUG   opendrift.models.basemodel:813: 993 elements hit coastline, moving back to water
13:47:20 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:20 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:20 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:20 DEBUG   opendrift.models.physics_methods:835: Advecting 35 of 7048 elements above 0.100m with wind-sheared ocean current (0.015010 m/s - 0.163166 m/s)
13:47:20 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:20 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:20 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08710223511131286
13:47:20 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:20 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:20 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:20 DEBUG   opendrift.models.oceandrift:582: 734 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 115 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 115 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 115 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 603 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 524 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 501 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 458 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 434 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 425 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 386 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:47:20 DEBUG   opendrift.models.oceandrift:582: 384 elements penetrated seafloor, lifting up
13:47:20 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:47:20 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:47:20 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:20 DEBUG   opendrift.models.basemodel:2945: 7048 active elements (0 deactivated)
13:47:20 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2952, already seeded 7048
13:47:20 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 7083 elements
13:47:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:20 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:20 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:20 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:20 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:20 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4956 (max)
13:47:20 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1527:               7083 active elements
13:47:20 DEBUG   opendrift.models.basemodel:1538:               59.09327616807134 <- latitude  -> 59.1903620946906
13:47:20 DEBUG   opendrift.models.basemodel:1543:               10.891404793966476 <- longitude -> 11.043017341528403
13:47:20 DEBUG   opendrift.models.basemodel:1548:               -15.17020248413086   <- z ->   0.0
13:47:20 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:836: Lifting 599 elements to seafloor.
13:47:20 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:20 INFO    opendrift.models.basemodel:2882: 2023-09-02 23:33:54.338376 - step 204 of 216 - 7083 active elements (0 deactivated)
13:47:20 DEBUG   opendrift.models.basemodel:2888: 2917 elements scheduled.
13:47:20 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 7083 elements
13:47:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:20 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:20 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:20 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:20 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:20 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:20 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:20 DEBUG   opendrift.models.basemodel:1253: Data needed for 7083 elements
13:47:20 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:20 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:21 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:21 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:21 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:21 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-03 00:00:00)
13:47:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:21 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4633 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4633 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4633 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4633 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4633 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4633 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 439 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6025 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2615 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6025 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2615 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6025 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2615 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6025 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2615 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6025 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2615 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6025 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2615 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4509 elements, expanding data 1
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:21 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.43) and
                      after (2023-09-03 00:00:00, weight 0.57) in time
13:47:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.108605771477755 and -58.956993207646676 degrees.
13:47:21 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.108605771477755 and -58.956993207646676 degrees.
13:47:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:21 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:21 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:21 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.755854 (min) 1.27937 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.949768 (min) 0.87159 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000199559 (min) 0.000672238 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.3894 (min) 5.47681 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.85448 (min) 6.7635 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4956 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1527:               7083 active elements
13:47:21 DEBUG   opendrift.models.basemodel:1538:               59.09327616807134 <- latitude  -> 59.1903620946906
13:47:21 DEBUG   opendrift.models.basemodel:1543:               10.891404793966476 <- longitude -> 11.043017341528403
13:47:21 DEBUG   opendrift.models.basemodel:1548:               -15.17020248413086   <- z ->   0.0
13:47:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:21 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:21 DEBUG   opendrift.models.physics_methods:1049:    min: 0.046630, mean: 2.489447, max: 7.934721
13:47:21 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.046630, mean: 2.489447, max: 7.934721
13:47:21 DEBUG   opendrift.models.basemodel:813: 1073 elements hit coastline, moving back to water
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
13:47:21 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:21 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:21 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 7083 elements above 0.100m with wind-sheared ocean current (0.000358 m/s - 0.128637 m/s)
13:47:21 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:21 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:21 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07790912672670364
13:47:21 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:21 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:21 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:21 DEBUG   opendrift.models.oceandrift:582: 704 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 568 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 560 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 99 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 99 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 99 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 459 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 390 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:21 DEBUG   opendrift.models.oceandrift:582: 410 elements penetrated seafloor, lifting up
13:47:21 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:21 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:21 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:21 DEBUG   opendrift.models.basemodel:2945: 7083 active elements (0 deactivated)
13:47:21 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2917, already seeded 7083
13:47:21 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 7118 elements
13:47:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:21 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:21 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:21 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:21 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:21 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4836 (max)
13:47:21 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1527:               7118 active elements
13:47:21 DEBUG   opendrift.models.basemodel:1538:               59.09288043209899 <- latitude  -> 59.190065623209335
13:47:21 DEBUG   opendrift.models.basemodel:1543:               10.88980022533545 <- longitude -> 11.045326288688278
13:47:21 DEBUG   opendrift.models.basemodel:1548:               -14.955288162231446   <- z ->   0.0
13:47:21 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:836: Lifting 642 elements to seafloor.
13:47:21 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:21 INFO    opendrift.models.basemodel:2882: 2023-09-02 23:43:54.338376 - step 205 of 216 - 7118 active elements (0 deactivated)
13:47:21 DEBUG   opendrift.models.basemodel:2888: 2882 elements scheduled.
13:47:21 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 7118 elements
13:47:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:21 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:21 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:21 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:21 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:21 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:21 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:21 DEBUG   opendrift.models.basemodel:1253: Data needed for 7118 elements
13:47:21 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:21 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:22 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:22 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:22 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:22 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-03 00:00:00)
13:47:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:22 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4668 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4668 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4668 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4668 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4668 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 448 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 119 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6076 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6076 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6076 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6076 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6076 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2652 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4551 elements, expanding data 1
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 2
13:47:22 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:22 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.27) and
                      after (2023-09-03 00:00:00, weight 0.73) in time
13:47:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.110210335758886 and -58.954684261693664 degrees.
13:47:22 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.110210335758886 and -58.954684261693664 degrees.
13:47:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:22 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:22 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:22 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.807965 (min) 1.39864 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.955926 (min) 0.78468 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000191387 (min) 0.000649214 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.76198 (min) 6.11488 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.33917 (min) 6.82569 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4836 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1527:               7118 active elements
13:47:22 DEBUG   opendrift.models.basemodel:1538:               59.09288043209899 <- latitude  -> 59.190065623209335
13:47:22 DEBUG   opendrift.models.basemodel:1543:               10.88980022533545 <- longitude -> 11.045326288688278
13:47:22 DEBUG   opendrift.models.basemodel:1548:               -14.807597160339355   <- z ->   0.0
13:47:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:22 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:22 DEBUG   opendrift.models.physics_methods:1049:    min: 0.018439, mean: 2.503751, max: 7.695873
13:47:22 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.018439, mean: 2.503751, max: 7.695873
13:47:22 DEBUG   opendrift.models.basemodel:813: 985 elements hit coastline, moving back to water
13:47:22 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:22 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:22 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:22 DEBUG   opendrift.models.physics_methods:835: Advecting 37 of 7118 elements above 0.100m with wind-sheared ocean current (0.003018 m/s - 0.106394 m/s)
13:47:22 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:22 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:22 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07328960730846405
13:47:22 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:22 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:22 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:22 DEBUG   opendrift.models.oceandrift:582: 749 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 561 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 88 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 461 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 81 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 416 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:22 DEBUG   opendrift.models.oceandrift:582: 395 elements penetrated seafloor, lifting up
13:47:22 DEBUG   opendrift.models.oceandrift:600: 64 elements reached seafloor, set to bottom
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
13:47:22 DEBUG   opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
13:47:22 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:22 DEBUG   opendrift.models.basemodel:2945: 7118 active elements (0 deactivated)
13:47:22 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2882, already seeded 7118
13:47:22 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 7153 elements
13:47:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:22 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:22 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:22 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:22 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:22 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4343 (max)
13:47:22 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1527:               7153 active elements
13:47:22 DEBUG   opendrift.models.basemodel:1538:               59.09195659656912 <- latitude  -> 59.190169310338334
13:47:22 DEBUG   opendrift.models.basemodel:1543:               10.891404793966476 <- longitude -> 11.045122923452665
13:47:22 DEBUG   opendrift.models.basemodel:1548:               -14.792651405334473   <- z ->   0.0
13:47:22 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:836: Lifting 588 elements to seafloor.
13:47:22 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:22 INFO    opendrift.models.basemodel:2882: 2023-09-02 23:53:54.338376 - step 206 of 216 - 7153 active elements (0 deactivated)
13:47:22 DEBUG   opendrift.models.basemodel:2888: 2847 elements scheduled.
13:47:22 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 7153 elements
13:47:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:22 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:22 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:22 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:22 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:22 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:22 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:22 DEBUG   opendrift.models.basemodel:1253: Data needed for 7153 elements
13:47:22 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:22 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-02 23:00:00 (before)
                2023-09-03 00:00:00 (after)
13:47:23 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:23 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:23 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:23 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:23 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-03 00:00:00)
13:47:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-02 23:00:00) in space  (linearNDFast)
13:47:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:23 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 446 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 126 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6101 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2671 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6101 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2671 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6101 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2671 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6101 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2671 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6101 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2671 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4598 elements, expanding data 1
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 133 elements, expanding data 2
13:47:23 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:23 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-02 23:00:00, weight 0.10) and
                      after (2023-09-03 00:00:00, weight 0.90) in time
13:47:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.108605771477755 and -58.95488762994438 degrees.
13:47:23 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.108605771477755 and -58.95488762994438 degrees.
13:47:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:23 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:23 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:23 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.757643 (min) 1.14701 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.011 (min) 0.889549 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000160453 (min) 0.000692238 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.77298 (min) 5.35759 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.85014 (min) 6.34439 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4343 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1527:               7153 active elements
13:47:23 DEBUG   opendrift.models.basemodel:1538:               59.09195659656912 <- latitude  -> 59.190169310338334
13:47:23 DEBUG   opendrift.models.basemodel:1543:               10.891404793966476 <- longitude -> 11.045122923452665
13:47:23 DEBUG   opendrift.models.basemodel:1548:               -14.792651405334473   <- z ->   0.0
13:47:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:23 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:23 DEBUG   opendrift.models.physics_methods:1049:    min: 0.035432, mean: 2.482024, max: 8.782626
13:47:23 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.035432, mean: 2.482024, max: 8.782626
13:47:23 DEBUG   opendrift.models.basemodel:813: 1050 elements hit coastline, moving back to water
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 183 elements to seafloor.
13:47:23 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:23 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:23 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 7153 elements above 0.100m with wind-sheared ocean current (0.002747 m/s - 0.180042 m/s)
13:47:23 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:23 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:23 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.09544862713582992
13:47:23 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:23 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:23 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:23 DEBUG   opendrift.models.oceandrift:582: 820 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 118 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 118 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 118 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 590 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 116 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 116 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 116 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 569 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 497 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 95 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 80 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 466 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 447 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 85 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
13:47:23 DEBUG   opendrift.models.oceandrift:582: 394 elements penetrated seafloor, lifting up
13:47:23 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:23 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:23 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:23 DEBUG   opendrift.models.basemodel:2945: 7153 active elements (0 deactivated)
13:47:23 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2847, already seeded 7153
13:47:23 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 7187 elements
13:47:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:23 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:23 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:23 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:23 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:23 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4098 (max)
13:47:23 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1527:               7187 active elements
13:47:23 DEBUG   opendrift.models.basemodel:1538:               59.09271408388393 <- latitude  -> 59.18928637034371
13:47:23 DEBUG   opendrift.models.basemodel:1543:               10.891404793966478 <- longitude -> 11.047310765521088
13:47:23 DEBUG   opendrift.models.basemodel:1548:               -14.67850326538086   <- z ->   0.0
13:47:23 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:836: Lifting 638 elements to seafloor.
13:47:23 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:23 INFO    opendrift.models.basemodel:2882: 2023-09-03 00:03:54.338376 - step 207 of 216 - 7187 active elements (0 deactivated)
13:47:23 DEBUG   opendrift.models.basemodel:2888: 2813 elements scheduled.
13:47:23 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 7187 elements
13:47:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:23 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:23 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:23 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:23 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:23 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:23 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:23 DEBUG   opendrift.models.basemodel:1253: Data needed for 7187 elements
13:47:23 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:23 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:24 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:24 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:24 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:24 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x5) for time after (2023-09-03 01:00:00)
13:47:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:24 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4686 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 457 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4686 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 457 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4686 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 457 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4686 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 457 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4686 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 457 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6139 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6139 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6139 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6139 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6139 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2657 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4573 elements, expanding data 1
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 2
13:47:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:24 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.93) and
                      after (2023-09-03 01:00:00, weight 0.07) in time
13:47:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.108605771477755 and -58.95269977530649 degrees.
13:47:24 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.108605771477755 and -58.95269977530649 degrees.
13:47:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:24 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:24 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:24 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.79237 (min) 1.27192 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.23676 (min) 0.805653 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000130352 (min) 0.000706109 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.68598 (min) 6.93613 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.77655 (min) 6.29961 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4098 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1527:               7187 active elements
13:47:24 DEBUG   opendrift.models.basemodel:1538:               59.09271408388393 <- latitude  -> 59.18928637034371
13:47:24 DEBUG   opendrift.models.basemodel:1543:               10.891404793966478 <- longitude -> 11.047310765521088
13:47:24 DEBUG   opendrift.models.basemodel:1548:               -14.619867324829102   <- z ->   0.0
13:47:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:24 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:24 DEBUG   opendrift.models.physics_methods:1049:    min: 0.039998, mean: 2.522723, max: 8.381514
13:47:24 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.039998, mean: 2.522723, max: 8.381514
13:47:24 DEBUG   opendrift.models.basemodel:813: 1082 elements hit coastline, moving back to water
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
13:47:24 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:24 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:24 DEBUG   opendrift.models.physics_methods:835: Advecting 34 of 7187 elements above 0.100m with wind-sheared ocean current (0.022162 m/s - 0.118565 m/s)
13:47:24 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:24 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:24 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08692960970552444
13:47:24 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:24 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:24 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:24 DEBUG   opendrift.models.oceandrift:582: 773 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 577 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 589 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 522 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 501 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 506 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 102 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 102 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 102 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 458 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:47:24 DEBUG   opendrift.models.oceandrift:582: 431 elements penetrated seafloor, lifting up
13:47:24 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:24 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:24 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:24 DEBUG   opendrift.models.basemodel:2945: 7187 active elements (0 deactivated)
13:47:24 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2813, already seeded 7187
13:47:24 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 7222 elements
13:47:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:24 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:24 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:24 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:24 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:24 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4162 (max)
13:47:24 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1527:               7222 active elements
13:47:24 DEBUG   opendrift.models.basemodel:1538:               59.09214492563342 <- latitude  -> 59.190169963357434
13:47:24 DEBUG   opendrift.models.basemodel:1543:               10.893045163159876 <- longitude -> 11.046234369928237
13:47:24 DEBUG   opendrift.models.basemodel:1548:               -15.39224624633789   <- z ->   0.0
13:47:24 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:836: Lifting 636 elements to seafloor.
13:47:24 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:24 INFO    opendrift.models.basemodel:2882: 2023-09-03 00:13:54.338376 - step 208 of 216 - 7222 active elements (0 deactivated)
13:47:24 DEBUG   opendrift.models.basemodel:2888: 2778 elements scheduled.
13:47:24 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 7222 elements
13:47:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:24 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:24 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:24 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:24 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:24 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:24 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:24 DEBUG   opendrift.models.basemodel:1253: Data needed for 7222 elements
13:47:24 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:24 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:25 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:25 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:25 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:25 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:25 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:25 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:25 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-03 01:00:00)
13:47:25 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:25 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4769 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4769 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4769 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4769 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4769 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4769 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6163 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2716 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6163 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2716 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6163 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2716 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6163 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2716 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6163 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2716 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6163 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2716 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4652 elements, expanding data 1
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
13:47:25 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:25 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.77) and
                      after (2023-09-03 01:00:00, weight 0.23) in time
13:47:25 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.106965411079045 and -58.95377617880378 degrees.
13:47:25 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.106965411079045 and -58.95377617880378 degrees.
13:47:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:25 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:25 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:25 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:25 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:25 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -1.02312 (min) 1.06033 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.988645 (min) 0.744415 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000117747 (min) 0.000750282 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.57833 (min) 5.62888 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.86633 (min) 7.2338 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4162 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1527:               7222 active elements
13:47:25 DEBUG   opendrift.models.basemodel:1538:               59.09214492563342 <- latitude  -> 59.190169963357434
13:47:25 DEBUG   opendrift.models.basemodel:1543:               10.893045163159876 <- longitude -> 11.046234369928237
13:47:25 DEBUG   opendrift.models.basemodel:1548:               -15.39224624633789   <- z ->   0.0
13:47:25 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:25 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:25 DEBUG   opendrift.models.physics_methods:1049:    min: 0.051859, mean: 2.519423, max: 9.183819
13:47:25 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.051859, mean: 2.519423, max: 9.183819
13:47:25 DEBUG   opendrift.models.basemodel:813: 1101 elements hit coastline, moving back to water
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 126 elements to seafloor.
13:47:25 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:25 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:25 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 7222 elements above 0.100m with wind-sheared ocean current (0.004259 m/s - 0.105987 m/s)
13:47:25 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:25 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:25 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.10436767117126464
13:47:25 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:25 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:25 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:25 DEBUG   opendrift.models.oceandrift:582: 825 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 133 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 133 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 133 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 621 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 133 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 133 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 133 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 559 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 526 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 517 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 108 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 108 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 452 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 76 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 467 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 445 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 79 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
13:47:25 DEBUG   opendrift.models.oceandrift:582: 446 elements penetrated seafloor, lifting up
13:47:25 DEBUG   opendrift.models.oceandrift:600: 78 elements reached seafloor, set to bottom
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
13:47:25 DEBUG   opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
13:47:25 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:25 DEBUG   opendrift.models.basemodel:2945: 7222 active elements (0 deactivated)
13:47:25 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2778, already seeded 7222
13:47:25 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 7257 elements
13:47:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:25 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:25 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:25 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:25 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:25 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:25 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3994 (max)
13:47:25 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1527:               7257 active elements
13:47:25 DEBUG   opendrift.models.basemodel:1538:               59.09253547560139 <- latitude  -> 59.19005647822921
13:47:25 DEBUG   opendrift.models.basemodel:1543:               10.8913537251621 <- longitude -> 11.04847911295418
13:47:25 DEBUG   opendrift.models.basemodel:1548:               -15.38224624633789   <- z ->   0.0
13:47:25 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:836: Lifting 709 elements to seafloor.
13:47:25 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:25 INFO    opendrift.models.basemodel:2882: 2023-09-03 00:23:54.338376 - step 209 of 216 - 7257 active elements (0 deactivated)
13:47:25 DEBUG   opendrift.models.basemodel:2888: 2743 elements scheduled.
13:47:25 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 7257 elements
13:47:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:25 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:25 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:25 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:25 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:25 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:25 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:25 DEBUG   opendrift.models.basemodel:1253: Data needed for 7257 elements
13:47:25 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:25 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:26 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:26 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:26 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:26 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:26 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x26x6) for time after (2023-09-03 01:00:00)
13:47:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:26 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4843 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4843 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4843 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4843 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4843 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4843 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6211 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2766 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6211 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2766 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6211 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2766 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6211 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2766 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6211 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2766 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6211 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2766 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4720 elements, expanding data 1
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 2
13:47:26 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:26 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.60) and
                      after (2023-09-03 01:00:00, weight 0.40) in time
13:47:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10865686078929 and -58.9515314584498 degrees.
13:47:26 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10865686078929 and -58.9515314584498 degrees.
13:47:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:26 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:26 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:26 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.773556 (min) 1.3302 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11816 (min) 0.790155 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000113287 (min) 0.00074929 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.45825 (min) 5.83048 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.41754 (min) 6.96295 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3994 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1527:               7257 active elements
13:47:26 DEBUG   opendrift.models.basemodel:1538:               59.09253547560139 <- latitude  -> 59.19005647822921
13:47:26 DEBUG   opendrift.models.basemodel:1543:               10.8913537251621 <- longitude -> 11.04847911295418
13:47:26 DEBUG   opendrift.models.basemodel:1548:               -15.38224624633789   <- z ->   0.0
13:47:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:26 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:26 DEBUG   opendrift.models.physics_methods:1049:    min: 0.021457, mean: 2.519101, max: 7.285535
13:47:26 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.021457, mean: 2.519101, max: 7.285535
13:47:26 DEBUG   opendrift.models.basemodel:813: 1125 elements hit coastline, moving back to water
13:47:26 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:26 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:26 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:26 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7257 elements above 0.100m with wind-sheared ocean current (0.006772 m/s - 0.118242 m/s)
13:47:26 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:26 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:26 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.0656828915336895
13:47:26 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:26 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:26 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:26 DEBUG   opendrift.models.oceandrift:582: 821 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 147 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 147 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 147 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 661 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 601 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 525 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 98 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 493 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 498 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 475 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:26 DEBUG   opendrift.models.oceandrift:582: 420 elements penetrated seafloor, lifting up
13:47:26 DEBUG   opendrift.models.oceandrift:600: 62 elements reached seafloor, set to bottom
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
13:47:26 DEBUG   opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
13:47:26 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:26 DEBUG   opendrift.models.basemodel:2945: 7257 active elements (0 deactivated)
13:47:26 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2743, already seeded 7257
13:47:26 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 7291 elements
13:47:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:26 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:26 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:26 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:26 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:26 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4399 (max)
13:47:26 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1527:               7291 active elements
13:47:26 DEBUG   opendrift.models.basemodel:1538:               59.09290714867236 <- latitude  -> 59.190193888856236
13:47:26 DEBUG   opendrift.models.basemodel:1543:               10.890389262442733 <- longitude -> 11.048130595501002
13:47:26 DEBUG   opendrift.models.basemodel:1548:               -15.15470718383789   <- z ->   0.0
13:47:26 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:836: Lifting 648 elements to seafloor.
13:47:26 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:26 INFO    opendrift.models.basemodel:2882: 2023-09-03 00:33:54.338376 - step 210 of 216 - 7291 active elements (0 deactivated)
13:47:26 DEBUG   opendrift.models.basemodel:2888: 2709 elements scheduled.
13:47:26 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 7291 elements
13:47:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:26 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:26 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:26 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:26 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:26 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:26 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:26 DEBUG   opendrift.models.basemodel:1253: Data needed for 7291 elements
13:47:26 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:26 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:27 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:27 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:27 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:27 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:27 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x26x6) for time after (2023-09-03 01:00:00)
13:47:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:27 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4905 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4905 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4905 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4905 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4905 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4905 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 466 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6252 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2800 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6252 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2800 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6252 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2800 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6252 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2800 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6252 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2800 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6252 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2800 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4788 elements, expanding data 1
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:27 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:27 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.43) and
                      after (2023-09-03 01:00:00, weight 0.57) in time
13:47:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10962131112339 and -58.95187995594885 degrees.
13:47:27 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.10962131112339 and -58.95187995594885 degrees.
13:47:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:27 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:27 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:27 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.801746 (min) 1.30703 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.16736 (min) 0.783327 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -9.11373e-05 (min) 0.000660828 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     x_wind: -9.1777 (min) 6.28902 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.96033 (min) 6.12677 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.4399 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1527:               7291 active elements
13:47:27 DEBUG   opendrift.models.basemodel:1538:               59.09290714867236 <- latitude  -> 59.190193888856236
13:47:27 DEBUG   opendrift.models.basemodel:1543:               10.890389262442733 <- longitude -> 11.048130595501002
13:47:27 DEBUG   opendrift.models.basemodel:1548:               -15.15470718383789   <- z ->   0.0
13:47:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:27 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:27 DEBUG   opendrift.models.physics_methods:1049:    min: 0.023756, mean: 2.544976, max: 8.287296
13:47:27 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.023756, mean: 2.544976, max: 8.287296
13:47:27 DEBUG   opendrift.models.basemodel:813: 1107 elements hit coastline, moving back to water
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
13:47:27 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:27 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:27 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7291 elements above 0.100m with wind-sheared ocean current (0.002076 m/s - 0.139533 m/s)
13:47:27 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:27 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:27 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.08498630932434081
13:47:27 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:27 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:27 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:27 DEBUG   opendrift.models.oceandrift:582: 869 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 636 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 572 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 104 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 104 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 535 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 504 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 496 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 472 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 458 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 474 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 90 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
13:47:27 DEBUG   opendrift.models.oceandrift:582: 419 elements penetrated seafloor, lifting up
13:47:27 DEBUG   opendrift.models.oceandrift:600: 58 elements reached seafloor, set to bottom
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
13:47:27 DEBUG   opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
13:47:27 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:27 DEBUG   opendrift.models.basemodel:2945: 7291 active elements (0 deactivated)
13:47:27 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2709, already seeded 7291
13:47:27 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 7326 elements
13:47:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:27 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:27 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:27 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:27 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:27 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3647 (max)
13:47:27 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1527:               7326 active elements
13:47:27 DEBUG   opendrift.models.basemodel:1538:               59.09217709529403 <- latitude  -> 59.18984255074082
13:47:27 DEBUG   opendrift.models.basemodel:1543:               10.885353868617088 <- longitude -> 11.050989398207244
13:47:27 DEBUG   opendrift.models.basemodel:1548:               -15.028506459766566   <- z ->   0.0
13:47:27 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:836: Lifting 702 elements to seafloor.
13:47:27 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:27 INFO    opendrift.models.basemodel:2882: 2023-09-03 00:43:54.338376 - step 211 of 216 - 7326 active elements (0 deactivated)
13:47:27 DEBUG   opendrift.models.basemodel:2888: 2674 elements scheduled.
13:47:27 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 7326 elements
13:47:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:27 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:27 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:27 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:27 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:27 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:27 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:27 DEBUG   opendrift.models.basemodel:1253: Data needed for 7326 elements
13:47:27 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:27 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:28 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:28 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:28 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:28 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 01:00:00)
13:47:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:28 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4944 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4944 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4944 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4944 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4944 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4944 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6294 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2870 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6294 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2870 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6294 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2870 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6294 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2870 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6294 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2870 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6294 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2870 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4827 elements, expanding data 1
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 2
13:47:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
13:47:28 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.27) and
                      after (2023-09-03 01:00:00, weight 0.73) in time
13:47:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1146567070224 and -58.94902117202265 degrees.
13:47:28 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1146567070224 and -58.94902117202265 degrees.
13:47:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:28 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:28 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:28 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.908816 (min) 1.22129 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.05324 (min) 0.846784 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000117835 (min) 0.000682454 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.71532 (min) 6.30378 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     y_wind: -9.40307 (min) 6.6131 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3647 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1527:               7326 active elements
13:47:28 DEBUG   opendrift.models.basemodel:1538:               59.09217709529403 <- latitude  -> 59.18984255074082
13:47:28 DEBUG   opendrift.models.basemodel:1543:               10.885353868617088 <- longitude -> 11.050989398207244
13:47:28 DEBUG   opendrift.models.basemodel:1548:               -15.028506459766566   <- z ->   0.0
13:47:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:28 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:28 DEBUG   opendrift.models.physics_methods:1049:    min: 0.007599, mean: 2.522359, max: 8.035416
13:47:28 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.007599, mean: 2.522359, max: 8.035416
13:47:28 DEBUG   opendrift.models.basemodel:813: 1170 elements hit coastline, moving back to water
13:47:28 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:28 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:28 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:28 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7326 elements above 0.100m with wind-sheared ocean current (0.001723 m/s - 0.115402 m/s)
13:47:28 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:28 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:28 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07989898432548523
13:47:28 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:28 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:28 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:28 DEBUG   opendrift.models.oceandrift:582: 792 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 622 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 108 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 108 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 603 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 520 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 518 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 75 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 481 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 77 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 483 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 487 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:28 DEBUG   opendrift.models.oceandrift:582: 456 elements penetrated seafloor, lifting up
13:47:28 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:28 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:28 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:28 DEBUG   opendrift.models.basemodel:2945: 7326 active elements (0 deactivated)
13:47:28 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2674, already seeded 7326
13:47:28 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 7361 elements
13:47:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:28 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:28 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:28 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:28 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:28 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3434 (max)
13:47:28 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1527:               7361 active elements
13:47:28 DEBUG   opendrift.models.basemodel:1538:               59.09199312668858 <- latitude  -> 59.190202508676165
13:47:28 DEBUG   opendrift.models.basemodel:1543:               10.885789983952826 <- longitude -> 11.05477595787669
13:47:28 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:28 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:836: Lifting 663 elements to seafloor.
13:47:28 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:28 INFO    opendrift.models.basemodel:2882: 2023-09-03 00:53:54.338376 - step 212 of 216 - 7361 active elements (0 deactivated)
13:47:28 DEBUG   opendrift.models.basemodel:2888: 2639 elements scheduled.
13:47:28 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 7361 elements
13:47:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:28 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:28 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:28 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:28 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:28 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:28 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:28 DEBUG   opendrift.models.basemodel:1253: Data needed for 7361 elements
13:47:28 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:28 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 00:00:00 (before)
                2023-09-03 01:00:00 (after)
13:47:30 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:30 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:30 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:30 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:30 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 26x27x6) for time after (2023-09-03 01:00:00)
13:47:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 00:00:00) in space  (linearNDFast)
13:47:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:30 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4998 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4998 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4998 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4998 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4998 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4998 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 474 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 139 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6337 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6337 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6337 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6337 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6337 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6337 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2939 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 156 elements, expanding data 2
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
13:47:30 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 00:00:00, weight 0.10) and
                      after (2023-09-03 01:00:00, weight 0.90) in time
13:47:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1142205965202 and -58.945234614672124 degrees.
13:47:30 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1142205965202 and -58.945234614672124 degrees.
13:47:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:30 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:30 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:30 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.751798 (min) 1.25295 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.03114 (min) 1.13608 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000101273 (min) 0.000658581 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.16665 (min) 5.49939 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.57391 (min) 6.6988 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3434 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1527:               7361 active elements
13:47:30 DEBUG   opendrift.models.basemodel:1538:               59.09199312668858 <- latitude  -> 59.190202508676165
13:47:30 DEBUG   opendrift.models.basemodel:1543:               10.885789983952826 <- longitude -> 11.05477595787669
13:47:30 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:30 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:30 DEBUG   opendrift.models.physics_methods:1049:    min: 0.008552, mean: 2.527267, max: 7.775772
13:47:30 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.008552, mean: 2.527267, max: 7.775772
13:47:30 DEBUG   opendrift.models.basemodel:813: 1162 elements hit coastline, moving back to water
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 186 elements to seafloor.
13:47:30 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:30 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:30 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7361 elements above 0.100m with wind-sheared ocean current (0.001865 m/s - 0.110370 m/s)
13:47:30 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:30 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:30 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07481919817073822
13:47:30 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:30 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:30 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:30 DEBUG   opendrift.models.oceandrift:582: 820 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 124 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 124 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 124 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 615 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 572 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 107 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 505 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 479 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 463 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 68 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 440 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 63 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
13:47:30 DEBUG   opendrift.models.oceandrift:582: 449 elements penetrated seafloor, lifting up
13:47:30 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:30 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:30 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:30 DEBUG   opendrift.models.basemodel:2945: 7361 active elements (0 deactivated)
13:47:30 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2639, already seeded 7361
13:47:30 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 7396 elements
13:47:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:30 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:47:30 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 1
13:47:30 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:30 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:30 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:30 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3427 (max)
13:47:30 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1527:               7396 active elements
13:47:30 DEBUG   opendrift.models.basemodel:1538:               59.092335257535815 <- latitude  -> 59.190010599576546
13:47:30 DEBUG   opendrift.models.basemodel:1543:               10.886074201955452 <- longitude -> 11.05392272990829
13:47:30 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:30 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:836: Lifting 647 elements to seafloor.
13:47:30 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:30 INFO    opendrift.models.basemodel:2882: 2023-09-03 01:03:54.338376 - step 213 of 216 - 7396 active elements (0 deactivated)
13:47:30 DEBUG   opendrift.models.basemodel:2888: 2604 elements scheduled.
13:47:30 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 7396 elements
13:47:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:30 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:30 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:30 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:30 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:30 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:30 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:30 DEBUG   opendrift.models.basemodel:1253: Data needed for 7396 elements
13:47:30 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:30 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:31 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:31 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:31 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:31 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 02:00:00)
13:47:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:31 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space  (linearNDFast)
13:47:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5036 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5036 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5036 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5036 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5036 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5036 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6371 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2924 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6371 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2924 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6371 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2924 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6371 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2924 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6371 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2924 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6371 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2924 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4921 elements, expanding data 1
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
13:47:31 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
13:47:31 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.93) and
                      after (2023-09-03 02:00:00, weight 0.07) in time
13:47:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.113936375104714 and -58.94608783195944 degrees.
13:47:31 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.113936375104714 and -58.94608783195944 degrees.
13:47:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:31 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:31 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:31 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.682155 (min) 1.4002 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.00593 (min) 0.739876 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000202943 (min) 0.000692706 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     x_wind: -10.9684 (min) 7.24036 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.98259 (min) 6.52463 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3427 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1527:               7396 active elements
13:47:31 DEBUG   opendrift.models.basemodel:1538:               59.092335257535815 <- latitude  -> 59.190010599576546
13:47:31 DEBUG   opendrift.models.basemodel:1543:               10.886074201955452 <- longitude -> 11.05392272990829
13:47:31 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:31 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:31 DEBUG   opendrift.models.physics_methods:1049:    min: 0.058193, mean: 2.549267, max: 9.476515
13:47:31 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.058193, mean: 2.549267, max: 9.476515
13:47:31 DEBUG   opendrift.models.basemodel:813: 1217 elements hit coastline, moving back to water
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
13:47:31 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:31 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:31 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7396 elements above 0.100m with wind-sheared ocean current (0.004208 m/s - 0.112747 m/s)
13:47:31 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:31 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:31 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.11112598891170501
13:47:31 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:31 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:31 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:31 DEBUG   opendrift.models.oceandrift:582: 799 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 127 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 127 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 127 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 626 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 106 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 585 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 549 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 94 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 112 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 112 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 112 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 500 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 101 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 476 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 87 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 429 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:47:31 DEBUG   opendrift.models.oceandrift:582: 407 elements penetrated seafloor, lifting up
13:47:31 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:31 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:31 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:31 DEBUG   opendrift.models.basemodel:2945: 7396 active elements (0 deactivated)
13:47:31 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2604, already seeded 7396
13:47:31 DEBUG   opendrift.models.basemodel:1676: Released 34 new elements.
13:47:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 7430 elements
13:47:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:31 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:31 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:31 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:31 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:31 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:31 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3144 (max)
13:47:31 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1527:               7430 active elements
13:47:31 DEBUG   opendrift.models.basemodel:1538:               59.09234308155869 <- latitude  -> 59.190366223971495
13:47:31 DEBUG   opendrift.models.basemodel:1543:               10.885471829839656 <- longitude -> 11.062528777748229
13:47:31 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:31 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:836: Lifting 700 elements to seafloor.
13:47:31 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:31 INFO    opendrift.models.basemodel:2882: 2023-09-03 01:13:54.338376 - step 214 of 216 - 7430 active elements (0 deactivated)
13:47:31 DEBUG   opendrift.models.basemodel:2888: 2570 elements scheduled.
13:47:31 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 7430 elements
13:47:31 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:31 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:31 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:31 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:31 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:31 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:31 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:31 DEBUG   opendrift.models.basemodel:1253: Data needed for 7430 elements
13:47:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:32 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:32 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:32 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:32 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:32 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 02:00:00)
13:47:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:32 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space  (linearNDFast)
13:47:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5078 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5078 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5078 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5078 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5078 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5078 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 481 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6412 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2964 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6412 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2964 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6412 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2964 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6412 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2964 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6412 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2964 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6412 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2964 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4960 elements, expanding data 1
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
13:47:32 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:32 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.77) and
                      after (2023-09-03 02:00:00, weight 0.23) in time
13:47:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1145387376932 and -58.9374817845045 degrees.
13:47:32 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.1145387376932 and -58.9374817845045 degrees.
13:47:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:32 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:32 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:32 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.770325 (min) 1.20663 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -0.99917 (min) 0.785837 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000157356 (min) 0.00076481 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.28808 (min) 6.39985 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.843 (min) 5.95034 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.3144 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1527:               7430 active elements
13:47:32 DEBUG   opendrift.models.basemodel:1538:               59.09234308155869 <- latitude  -> 59.190366223971495
13:47:32 DEBUG   opendrift.models.basemodel:1543:               10.885471829839656 <- longitude -> 11.062528777748229
13:47:32 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:32 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:32 DEBUG   opendrift.models.physics_methods:1049:    min: 0.020255, mean: 2.508386, max: 7.797016
13:47:32 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.020255, mean: 2.508386, max: 7.797016
13:47:32 DEBUG   opendrift.models.basemodel:813: 1249 elements hit coastline, moving back to water
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 121 elements to seafloor.
13:47:32 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:32 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:32 DEBUG   opendrift.models.physics_methods:835: Advecting 39 of 7430 elements above 0.100m with wind-sheared ocean current (0.008431 m/s - 0.139968 m/s)
13:47:32 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:32 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:32 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07522855564029693
13:47:32 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:32 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:32 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:32 DEBUG   opendrift.models.oceandrift:582: 827 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 123 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 123 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 677 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 109 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 109 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 109 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 548 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 106 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 533 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 526 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 97 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 519 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 84 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 497 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 73 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 469 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 89 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 91 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
13:47:32 DEBUG   opendrift.models.oceandrift:582: 428 elements penetrated seafloor, lifting up
13:47:32 DEBUG   opendrift.models.oceandrift:600: 69 elements reached seafloor, set to bottom
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
13:47:32 DEBUG   opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
13:47:32 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:32 DEBUG   opendrift.models.basemodel:2945: 7430 active elements (0 deactivated)
13:47:32 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2570, already seeded 7430
13:47:32 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 7465 elements
13:47:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:32 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:32 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:32 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:32 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:32 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.277 (max)
13:47:32 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1527:               7465 active elements
13:47:32 DEBUG   opendrift.models.basemodel:1538:               59.09288192696457 <- latitude  -> 59.189979362719285
13:47:32 DEBUG   opendrift.models.basemodel:1543:               10.886269937061698 <- longitude -> 11.059161498188486
13:47:32 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:32 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:836: Lifting 700 elements to seafloor.
13:47:32 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:32 INFO    opendrift.models.basemodel:2882: 2023-09-03 01:23:54.338376 - step 215 of 216 - 7465 active elements (0 deactivated)
13:47:32 DEBUG   opendrift.models.basemodel:2888: 2535 elements scheduled.
13:47:32 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 7465 elements
13:47:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:32 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:32 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:32 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:32 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:32 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:32 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:32 DEBUG   opendrift.models.basemodel:1253: Data needed for 7465 elements
13:47:32 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:32 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:34 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:34 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:34 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:34 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:34 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 02:00:00)
13:47:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:34 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space  (linearNDFast)
13:47:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5091 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5091 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5091 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5091 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5091 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5091 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 469 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6453 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2995 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6453 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2995 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6453 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2995 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6453 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2995 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6453 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2995 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6453 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 2995 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4967 elements, expanding data 1
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 2
13:47:34 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
13:47:34 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.60) and
                      after (2023-09-03 02:00:00, weight 0.40) in time
13:47:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.11374063335479 and -58.94084906080994 degrees.
13:47:34 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.11374063335479 and -58.94084906080994 degrees.
13:47:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:34 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:34 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:34 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.813109 (min) 1.3488 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.16088 (min) 0.795789 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000209059 (min) 0.000735196 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.33745 (min) 6.1707 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     y_wind: -7.88484 (min) 6.07547 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.277 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1527:               7465 active elements
13:47:34 DEBUG   opendrift.models.basemodel:1538:               59.09288192696457 <- latitude  -> 59.189979362719285
13:47:34 DEBUG   opendrift.models.basemodel:1543:               10.886269937061698 <- longitude -> 11.059161498188486
13:47:34 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:34 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:34 DEBUG   opendrift.models.physics_methods:1049:    min: 0.035898, mean: 2.464988, max: 7.654121
13:47:34 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.035898, mean: 2.464988, max: 7.654121
13:47:34 DEBUG   opendrift.models.basemodel:813: 1257 elements hit coastline, moving back to water
13:47:34 DEBUG   opendrift.models.basemodel:831: No elements hit seafloor.
13:47:34 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:34 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:34 DEBUG   opendrift.models.physics_methods:835: Advecting 38 of 7465 elements above 0.100m with wind-sheared ocean current (0.000714 m/s - 0.160763 m/s)
13:47:34 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:34 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:34 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07249657652266502
13:47:34 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:34 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:34 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:34 DEBUG   opendrift.models.oceandrift:582: 768 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 125 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 125 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 603 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 113 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 113 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 113 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 105 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 528 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 96 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 516 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 83 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 484 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 457 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 82 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 464 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 450 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:34 DEBUG   opendrift.models.oceandrift:582: 405 elements penetrated seafloor, lifting up
13:47:34 DEBUG   opendrift.models.oceandrift:600: 71 elements reached seafloor, set to bottom
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
13:47:34 DEBUG   opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
13:47:34 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:34 DEBUG   opendrift.models.basemodel:2945: 7465 active elements (0 deactivated)
13:47:34 DEBUG   opendrift.models.basemodel:1658: to be seeded: 2535, already seeded 7465
13:47:34 DEBUG   opendrift.models.basemodel:1676: Released 35 new elements.
13:47:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
13:47:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 7500 elements
13:47:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:34 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:34 DEBUG   opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
13:47:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:34 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:34 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:34 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2687 (max)
13:47:34 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1527:               7500 active elements
13:47:34 DEBUG   opendrift.models.basemodel:1538:               59.091354644890075 <- latitude  -> 59.18861563589499
13:47:34 DEBUG   opendrift.models.basemodel:1543:               10.887772269074325 <- longitude -> 11.05967030538768
13:47:34 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:34 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:836: Lifting 671 elements to seafloor.
13:47:34 DEBUG   opendrift.models.basemodel:2881: ======================================================================
13:47:34 INFO    opendrift.models.basemodel:2882: 2023-09-03 01:33:54.338376 - step 216 of 216 - 7500 active elements (0 deactivated)
13:47:34 DEBUG   opendrift.models.basemodel:2888: 2500 elements scheduled.
13:47:34 DEBUG   opendrift.models.basemodel:2890: ======================================================================
13:47:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 7500 elements
13:47:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:34 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:34 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:34 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:34 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:34 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:34 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:34 DEBUG   opendrift.models.basemodel:1253: Data needed for 7500 elements
13:47:34 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
13:47:34 DEBUG   opendrift.readers.basereader.structured:184: Reader time:
                2023-09-03 01:00:00 (before)
                2023-09-03 02:00:00 (after)
13:47:35 DEBUG   opendrift.readers.basereader.variables:618: Checking sea_floor_depth_below_sea_level for invalid values
13:47:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_wind for invalid values
13:47:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_wind for invalid values
13:47:35 DEBUG   opendrift.readers.basereader.variables:618: Checking x_sea_water_velocity for invalid values
13:47:35 DEBUG   opendrift.readers.basereader.variables:618: Checking y_sea_water_velocity for invalid values
13:47:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
13:47:35 DEBUG   opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-09-03 02:00:00)
13:47:35 DEBUG   opendrift.readers.basereader.structured:296: Interpolating before (2023-09-03 01:00:00) in space  (linearNDFast)
13:47:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:35 DEBUG   opendrift.readers.basereader.structured:302: Interpolating after (2023-09-03 02:00:00) in space  (linearNDFast)
13:47:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5116 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5116 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5116 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5116 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5116 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5116 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 475 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6449 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3003 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6449 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3003 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6449 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3003 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6449 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3003 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6449 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3003 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6449 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 3003 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 5008 elements, expanding data 1
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
13:47:35 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
13:47:35 DEBUG   opendrift.readers.basereader.structured:317: Interpolating before (2023-09-03 01:00:00, weight 0.43) and
                      after (2023-09-03 02:00:00, weight 0.57) in time
13:47:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.11223829767731 and -58.94034025509694 degrees.
13:47:35 DEBUG   opendrift.readers.basereader.variables:87: Rotating vectors between -59.11223829767731 and -58.94034025509694 degrees.
13:47:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:35 DEBUG   opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
13:47:35 DEBUG   opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
13:47:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:35 DEBUG   opendrift.models.basemodel:1524:     x_sea_water_velocity: -0.713882 (min) 1.32828 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     y_sea_water_velocity: -1.11535 (min) 0.745232 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     upward_sea_water_velocity: -0.000329719 (min) 0.000840045 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     x_wind: -8.03664 (min) 6.24328 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     y_wind: -8.58073 (min) 6.64009 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1524:     sea_floor_depth_below_sea_level: 5 (min) 15.2687 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1527:               7500 active elements
13:47:35 DEBUG   opendrift.models.basemodel:1538:               59.091354644890075 <- latitude  -> 59.18861563589499
13:47:35 DEBUG   opendrift.models.basemodel:1543:               10.887772269074325 <- longitude -> 11.05967030538768
13:47:35 DEBUG   opendrift.models.basemodel:1548:               -15.204978942871094   <- z ->   0.0
13:47:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:35 DEBUG   opendrift.models.physics_methods:1039: Calculating wave period Tm02 from wind
13:47:35 DEBUG   opendrift.models.physics_methods:1049:    min: 0.025499, mean: 2.422750, max: 7.522633
13:47:35 DEBUG   opendrift.models.physics_methods:989: Calculating wave period from wind, min: 0.025499, mean: 2.422750, max: 7.522633
13:47:35 DEBUG   opendrift.models.basemodel:813: 1250 elements hit coastline, moving back to water
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
13:47:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:35 DEBUG   opendrift.models.basemodel:2930: Calling SedimentDrift.update()
13:47:35 DEBUG   opendrift.models.physics_methods:835: Advecting 41 of 7500 elements above 0.100m with wind-sheared ocean current (0.002551 m/s - 0.125661 m/s)
13:47:35 DEBUG   opendrift.models.physics_methods:853: No Stokes drift velocity available
13:47:35 DEBUG   opendrift.models.oceandrift:490: Using functional expression for diffusivity
13:47:35 DEBUG   opendrift.models.oceandrift:499: Diffusivities are in range 0.0 to 0.07002730493577003
13:47:35 DEBUG   opendrift.models.oceandrift:518: TSprofiles deactivated for vertical mixing
13:47:35 DEBUG   opendrift.models.oceandrift:533: Vertical mixing module:windspeed_Large1994
13:47:35 DEBUG   opendrift.models.oceandrift:536: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
13:47:35 DEBUG   opendrift.models.oceandrift:582: 815 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 133 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 133 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 133 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 598 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 86 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 564 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 106 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 495 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 100 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 100 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 100 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 482 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 92 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 502 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 98 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 443 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 93 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 438 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 70 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 448 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 74 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
13:47:35 DEBUG   opendrift.models.oceandrift:582: 454 elements penetrated seafloor, lifting up
13:47:35 DEBUG   opendrift.models.oceandrift:600: 72 elements reached seafloor, set to bottom
13:47:35 DEBUG   opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
13:47:35 DEBUG   opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
13:47:35 DEBUG   opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
13:47:35 DEBUG   opendrift.models.basemodel:2945: 7500 active elements (0 deactivated)
13:47:35 DEBUG   opendrift.models.basemodel:2974: Cleaning up
13:47:35 DEBUG   opendrift.models.basemodel:1230: ----------------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
13:47:35 DEBUG   opendrift.models.basemodel:1232: ----------------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1236: Calling reader global_landmask
13:47:35 DEBUG   opendrift.models.basemodel:1237: ----------------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1253: Data needed for 7500 elements
13:47:35 DEBUG   opendrift.readers.basereader.variables:737: Fetching variables from global_landmask
13:47:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
13:47:35 DEBUG   opendrift.readers.basereader.variables:618: Checking land_binary_mask for invalid values
13:47:35 DEBUG   opendrift.readers.basereader.variables:773: Reader projection is latlon - rotation of vectors is not needed.
13:47:35 DEBUG   opendrift.models.basemodel:1384: Obtained data for all elements.
13:47:35 DEBUG   opendrift.models.basemodel:1397: ---------------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1398: Finished processing all variable groups
13:47:35 DEBUG   opendrift.models.basemodel:1522: ------------ SUMMARY -------------
13:47:35 DEBUG   opendrift.models.basemodel:1524:     land_binary_mask: 0 (min) 1 (max)
13:47:35 DEBUG   opendrift.models.basemodel:1526: ---------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:1527:               7500 active elements
13:47:35 DEBUG   opendrift.models.basemodel:1538:               59.093722190746675 <- latitude  -> 59.189985102699325
13:47:35 DEBUG   opendrift.models.basemodel:1543:               10.887772269074325 <- longitude -> 11.062667822821412
13:47:35 DEBUG   opendrift.models.basemodel:1548:               -15.251687278747559   <- z ->   -0.07187991443361408
13:47:35 DEBUG   opendrift.models.basemodel:1549: ---------------------------------
13:47:35 DEBUG   opendrift.models.basemodel:813: 1272 elements hit coastline, moving back to water
13:47:35 DEBUG   opendrift.models.basemodel:2466: No elements to deactivate
13:47:35 INFO    opendrift.models.basemodel:3014: Removing 2500 unseeded elements from history array

Plotting the depth vs time

o.plot_property('z')
z

Animate sediment particles colored by their depth

o.animation(color='z', fast=False, buffer=.01)
#o.animation(color='moving', fast=False, buffer=.01, colorbar=False, legend=['Sedimented', 'Moving'])
13:47:42 DEBUG   opendrift.models.basemodel:3180: Setting up map: corners=None, fast=False, lscale=None
13:47:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:22 DEBUG   opendrift.models.basemodel:3855: Saving animation..
13:49:22 INFO    opendrift.models.basemodel:5350: Saving animation to /root/project/docs/source/gallery/animations/example_sediments_0.gif...
13:49:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:49:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:01 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:20 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:27 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:50:58 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:06 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:27 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:51:58 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:52:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:01 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.865354042053225, 11.082667846679685, 59.081712951660165, 59.198694000244124)..
13:53:55 DEBUG   opendrift.models.basemodel:5388: MPLBACKEND = agg
13:53:55 DEBUG   opendrift.models.basemodel:5389: DISPLAY = None
13:53:55 DEBUG   opendrift.models.basemodel:5390: Time to save animation: 0:04:32.082197
13:53:55 INFO    opendrift.models.basemodel:3848: Time to make animation: 0:06:12.469733
../_images/example_sediments_0.gif

Total running time of the script: (10 minutes 0.890 seconds)

Gallery generated by Sphinx-Gallery